Enum iron_shapes::edge::LineIntersection
source · pub enum LineIntersection<TP: CoordinateType, TE: CoordinateType> {
None,
Point(Point<TP>, (TE, TE, TE)),
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<TP>, (TE, TE, TE))
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§
source§impl<TP: Clone + CoordinateType, TE: Clone + CoordinateType> Clone for LineIntersection<TP, TE>
impl<TP: Clone + CoordinateType, TE: Clone + CoordinateType> Clone for LineIntersection<TP, TE>
source§fn clone(&self) -> LineIntersection<TP, TE>
fn clone(&self) -> LineIntersection<TP, TE>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl<TP: Debug + CoordinateType, TE: Debug + CoordinateType> Debug for LineIntersection<TP, TE>
impl<TP: Debug + CoordinateType, TE: Debug + CoordinateType> Debug for LineIntersection<TP, TE>
source§impl<TP: PartialEq + CoordinateType, TE: PartialEq + CoordinateType> PartialEq<LineIntersection<TP, TE>> for LineIntersection<TP, TE>
impl<TP: PartialEq + CoordinateType, TE: PartialEq + CoordinateType> PartialEq<LineIntersection<TP, TE>> for LineIntersection<TP, TE>
source§fn eq(&self, other: &LineIntersection<TP, TE>) -> bool
fn eq(&self, other: &LineIntersection<TP, TE>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.