[][src]Struct ncollide2d::query::contacts_internal::ContactManifold

pub struct ContactManifold<N: Real> { /* fields omitted */ }

A contact manifold.

A contact manifold is a set of contacts between two shapes. If the shapes are convex, then the convex hull of those contacts are often interpreted as surface. This structure is responsible for matching new contacts with old ones in order to perform an approximate tracking of the contact points.

Methods

impl<N: Real> ContactManifold<N>[src]

pub fn new() -> Self[src]

Initializes a contact manifold without any contact.

The default contact tracking mode is set to ContactTrackingMode::DistanceBased(0.02).

pub fn len(&self) -> usize[src]

The number of contacts contained by this manifold.

pub fn contacts(
    &self
) -> impl Iterator<Item = &TrackedContact<N>>
[src]

All the contact tracked by this manifold.

pub fn contacts_mut(
    &mut self
) -> impl Iterator<Item = &mut TrackedContact<N>>
[src]

Mutable reference to all the contact tracked by this manifold.

pub fn deepest_contact(&self) -> Option<&TrackedContact<N>>[src]

The contact of this manifold with the deepest penetration depth.

pub fn clear(&mut self, gen: &mut IdAllocator)[src]

Empty the manifold as well as its cache.

pub fn tracking_mode(&self) -> ContactTrackingMode<N>[src]

Gets the technique currently used for tracking contacts.

pub fn set_tracking_mode(&mut self, mode: ContactTrackingMode<N>)[src]

Sets the technique used for tracking contacts.

If the selected method is different from the current one, the current contact cache is cleared.

pub fn save_cache_and_clear(&mut self, gen: &mut IdAllocator)[src]

Save the contacts to a cache and empty the manifold.

pub fn push(
    &mut self,
    contact: Contact<N>,
    kinematic: ContactKinematic<N>,
    tracking_pt: Point<N>,
    preprocessor1: Option<&dyn ContactPreprocessor<N>>,
    preprocessor2: Option<&dyn ContactPreprocessor<N>>,
    gen: &mut IdAllocator
) -> bool
[src]

Add a new contact to the manifold.

The manifold will attempt to match this contact with another one previously added and added to the cache by the last call to save_cache_and_clear. The matching is done by spacial proximity, i.e., two contacts that are sufficiently close will be given the same identifier.

Trait Implementations

impl<N: Clone + Real> Clone for ContactManifold<N>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<N: Debug + Real> Debug for ContactManifold<N>[src]

Auto Trait Implementations

impl<N> Send for ContactManifold<N> where
    N: Scalar

impl<N> Sync for ContactManifold<N> where
    N: Scalar

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> Same for T

type Output = T

Should always be Self