pub type REdgeIntersection<T> = EdgeIntersection<T, T, REdge<T>>;Expand description
Return type for the edge-edge intersection functions. Stores all possible results of a edge to edge intersection.
Aliased Type§
pub enum REdgeIntersection<T> {
None,
Point(Point<T>),
EndPoint(Point<T>),
Overlap(REdge<T>),
}