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.
Methods
impl<T> Intersection<T>[src]
fn is_outside(&self) -> bool
Return true if the intersection is completely outside.
fn is_inside(&self) -> bool
Return true if the intersection cuts the source polygon.