Struct ncollide3d::query::ContactManifold [−][src]
pub struct ContactManifold<N: RealField> { /* 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.
Implementations
impl<N: RealField> ContactManifold<N>
[src]
impl<N: RealField> 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)
[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)
[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>>
) -> bool
[src]
&mut self,
contact: Contact<N>,
kinematic: ContactKinematic<N>,
tracking_pt: Point<N>,
preprocessor1: Option<&dyn ContactPreprocessor<N>>,
preprocessor2: Option<&dyn ContactPreprocessor<N>>
) -> bool
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 + RealField> Clone for ContactManifold<N>
[src]
impl<N: Clone + RealField> Clone for ContactManifold<N>
[src]fn clone(&self) -> ContactManifold<N>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
Auto Trait Implementations
impl<N> RefUnwindSafe for ContactManifold<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for ContactManifold<N>
impl<N> Sync for ContactManifold<N>
impl<N> Unpin for ContactManifold<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for ContactManifold<N> where
N: UnwindSafe,
N: UnwindSafe,
Blanket Implementations
impl<T> DowncastSync for T where
T: Any + Send + Sync,
[src]
impl<T> DowncastSync for T where
T: Any + Send + Sync,
[src]impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[src]