pub enum Orientation3D {
Above,
Below,
Coplanar,
}Expand description
Classification of a point’s position relative to an oriented plane.
Variants§
Above
The point lies above the plane (positive side).
Below
The point lies below the plane (negative side).
Coplanar
The point lies on the plane.
Trait Implementations§
Source§impl Clone for Orientation3D
impl Clone for Orientation3D
Source§fn clone(&self) -> Orientation3D
fn clone(&self) -> Orientation3D
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 Orientation3D
Source§impl Debug for Orientation3D
impl Debug for Orientation3D
impl Eq for Orientation3D
Source§impl Hash for Orientation3D
impl Hash for Orientation3D
Source§impl PartialEq for Orientation3D
impl PartialEq for Orientation3D
impl StructuralPartialEq for Orientation3D
Auto Trait Implementations§
impl Freeze for Orientation3D
impl RefUnwindSafe for Orientation3D
impl Send for Orientation3D
impl Sync for Orientation3D
impl Unpin for Orientation3D
impl UnsafeUnpin for Orientation3D
impl UnwindSafe for Orientation3D
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