pub struct TriFace3D { /* private fields */ }
Expand description
Face with 3 corners in 3D space
Implementations§
Trait Implementations§
Source§impl HasBoundingBox3D for TriFace3D
impl HasBoundingBox3D for TriFace3D
Source§fn bounding_box(&self) -> BoundingBox3D
fn bounding_box(&self) -> BoundingBox3D
Should return the bounding box
Source§impl HasBoundingBox3DMaybe for TriFace3D
impl HasBoundingBox3DMaybe for TriFace3D
Source§fn bounding_box_maybe(&self) -> Result<BoundingBox3D>
fn bounding_box_maybe(&self) -> Result<BoundingBox3D>
Should return the bounding box if it can be calculated
Auto Trait Implementations§
impl Freeze for TriFace3D
impl RefUnwindSafe for TriFace3D
impl Send for TriFace3D
impl Sync for TriFace3D
impl Unpin for TriFace3D
impl UnwindSafe for TriFace3D
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> 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