Enum libreda_pnr::db::RLineIntersection
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§
§impl<T> Clone for RLineIntersection<T>where
T: Clone + CoordinateType,
impl<T> Clone for RLineIntersection<T>where T: Clone + CoordinateType,
§fn clone(&self) -> RLineIntersection<T>
fn clone(&self) -> RLineIntersection<T>
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 more§impl<T> Debug for RLineIntersection<T>where
T: Debug + CoordinateType,
impl<T> Debug for RLineIntersection<T>where T: Debug + CoordinateType,
§impl<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,
§fn 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 ==.