Enum plane_split::polygon::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§
source§impl<T> Intersection<T>
impl<T> Intersection<T>
Auto Trait Implementations§
impl<T> Freeze for Intersection<T>where
T: Freeze,
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more