pub enum PointClassification {
Inside,
Outside,
OnBoundary,
}Expand description
Result of classifying a point relative to a solid.
Variants§
Inside
The point is inside the solid.
Outside
The point is outside the solid.
OnBoundary
The point is on the boundary (within tolerance).
Trait Implementations§
Source§impl Clone for PointClassification
impl Clone for PointClassification
Source§fn clone(&self) -> PointClassification
fn clone(&self) -> PointClassification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PointClassification
Source§impl Debug for PointClassification
impl Debug for PointClassification
impl Eq for PointClassification
Source§impl PartialEq for PointClassification
impl PartialEq for PointClassification
impl StructuralPartialEq for PointClassification
Auto Trait Implementations§
impl Freeze for PointClassification
impl RefUnwindSafe for PointClassification
impl Send for PointClassification
impl Sync for PointClassification
impl Unpin for PointClassification
impl UnsafeUnpin for PointClassification
impl UnwindSafe for PointClassification
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more