Enum libreda_db::layout::prelude::RLineIntersection
source · [−]pub enum RLineIntersection<T> where
T: CoordinateType, {
None,
Point(Point<T>),
Collinear,
}Expand description
Return type for the line-line intersection functions. Stores all possible results of a line to line intersection.
Variants
None
No intersection at all.
Point(Point<T>)
Intersection in a single point.
Besides the intersection point also an other expression for the intersection point is given.
The three values (a, b, c) describe the intersection point in terms of a starting point (the starting point
of the edge which defines the line) and the direction of the edge multiplied by a fraction.
edge.start + edge.vector()*a/c == p and
other_edge.start + other_edge.vector()*b/c == p.
Collinear
Lines are collinear.
Trait Implementations
sourceimpl<T> Clone for RLineIntersection<T> where
T: Clone + CoordinateType,
impl<T> Clone for RLineIntersection<T> where
T: Clone + CoordinateType,
sourcefn clone(&self) -> RLineIntersection<T>
fn clone(&self) -> RLineIntersection<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<T> Debug for RLineIntersection<T> where
T: Debug + CoordinateType,
impl<T> Debug for RLineIntersection<T> where
T: Debug + CoordinateType,
sourceimpl<T> PartialEq<RLineIntersection<T>> for RLineIntersection<T> where
T: PartialEq<T> + CoordinateType,
impl<T> PartialEq<RLineIntersection<T>> for RLineIntersection<T> where
T: PartialEq<T> + CoordinateType,
sourcefn eq(&self, other: &RLineIntersection<T>) -> bool
fn eq(&self, other: &RLineIntersection<T>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &RLineIntersection<T>) -> bool
fn ne(&self, other: &RLineIntersection<T>) -> bool
This method tests for !=.
impl<T> Copy for RLineIntersection<T> where
T: Copy + CoordinateType,
impl<T> StructuralPartialEq for RLineIntersection<T> where
T: CoordinateType,
Auto Trait Implementations
impl<T> RefUnwindSafe for RLineIntersection<T> where
T: RefUnwindSafe,
impl<T> Send for RLineIntersection<T> where
T: Send,
impl<T> Sync for RLineIntersection<T> where
T: Sync,
impl<T> Unpin for RLineIntersection<T> where
T: Unpin,
impl<T> UnwindSafe for RLineIntersection<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more