Enum plane_split::Intersection [] [src]

pub enum Intersection<T> {
    Coplanar,
    Outside,
    Inside(T),
}

Polygon intersection results.

Variants

Polygons are coplanar, including the case of being on the same plane.

Polygon planes are intersecting, but polygons are not.

Polygons are actually intersecting.

Methods

impl<T> Intersection<T>
[src]

Return true if the intersection is completely outside.

Return true if the intersection cuts the source polygon.