Enum plane_split::Intersection
[−]
[src]
pub enum Intersection<T> {
Coplanar,
Outside,
Inside(T),
}Polygon intersection results.
Variants
CoplanarPolygons are coplanar, including the case of being on the same plane.
OutsidePolygon planes are intersecting, but polygons are not.
Inside(T)Polygons are actually intersecting.