Enum plane_split::Intersection
source · pub enum Intersection<T> {
Coplanar,
Outside,
Inside(T),
}
Expand description
Polygon intersection results.
Variants
Coplanar
Polygons are coplanar, including the case of being on the same plane.
Outside
Polygon planes are intersecting, but polygons are not.
Inside(T)
Polygons are actually intersecting.
Implementations
sourceimpl<T> Intersection<T>
impl<T> Intersection<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for Intersection<T>where
T: RefUnwindSafe,
impl<T> Send for Intersection<T>where
T: Send,
impl<T> Sync for Intersection<T>where
T: Sync,
impl<T> Unpin for Intersection<T>where
T: Unpin,
impl<T> UnwindSafe for Intersection<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more