#[repr(C)]pub struct b3LocalManifoldPoint {
pub point: b3Vec3,
pub separation: f32,
pub pair: b3FeaturePair,
pub triangleIndex: c_int,
}Expand description
A local manifold point and normal in frame A.
Fields§
§point: b3Vec3Local point in frame A.
separation: f32The contact point separation. Negative for overlap.
pair: b3FeaturePairThe feature pair for this point.
triangleIndex: c_intThe triangle index when collide with a mesh or height-field.
Trait Implementations§
Source§impl Clone for b3LocalManifoldPoint
impl Clone for b3LocalManifoldPoint
Source§fn clone(&self) -> b3LocalManifoldPoint
fn clone(&self) -> b3LocalManifoldPoint
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 b3LocalManifoldPoint
Auto Trait Implementations§
impl Freeze for b3LocalManifoldPoint
impl RefUnwindSafe for b3LocalManifoldPoint
impl Send for b3LocalManifoldPoint
impl Sync for b3LocalManifoldPoint
impl Unpin for b3LocalManifoldPoint
impl UnsafeUnpin for b3LocalManifoldPoint
impl UnwindSafe for b3LocalManifoldPoint
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