#[repr(C)]pub struct b3SegmentDistanceResult {
pub point1: b3Vec3,
pub fraction1: f32,
pub point2: b3Vec3,
pub fraction2: f32,
}Expand description
The closest points between to segments or infinite lines.
Fields§
§point1: b3Vec3§fraction1: f32§point2: b3Vec3§fraction2: f32Trait Implementations§
Source§impl Clone for b3SegmentDistanceResult
impl Clone for b3SegmentDistanceResult
Source§fn clone(&self) -> b3SegmentDistanceResult
fn clone(&self) -> b3SegmentDistanceResult
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 b3SegmentDistanceResult
Auto Trait Implementations§
impl Freeze for b3SegmentDistanceResult
impl RefUnwindSafe for b3SegmentDistanceResult
impl Send for b3SegmentDistanceResult
impl Sync for b3SegmentDistanceResult
impl Unpin for b3SegmentDistanceResult
impl UnsafeUnpin for b3SegmentDistanceResult
impl UnwindSafe for b3SegmentDistanceResult
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