pub struct TrianglePoint {
pub point: Vec3,
pub feature: TriangleFeature,
}Expand description
Closest point on a triangle and the feature that owns it. (math_internal.h: b3TrianglePoint)
Fields§
§point: Vec3§feature: TriangleFeatureTrait Implementations§
Source§impl Clone for TrianglePoint
impl Clone for TrianglePoint
Source§fn clone(&self) -> TrianglePoint
fn clone(&self) -> TrianglePoint
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 TrianglePoint
Source§impl Debug for TrianglePoint
impl Debug for TrianglePoint
Source§impl PartialEq for TrianglePoint
impl PartialEq for TrianglePoint
impl StructuralPartialEq for TrianglePoint
Auto Trait Implementations§
impl Freeze for TrianglePoint
impl RefUnwindSafe for TrianglePoint
impl Send for TrianglePoint
impl Sync for TrianglePoint
impl Unpin for TrianglePoint
impl UnsafeUnpin for TrianglePoint
impl UnwindSafe for TrianglePoint
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