[][src]Struct nphysics3d::solver::ImpulseCache

pub struct ImpulseCache<N> { /* fields omitted */ }

A cache for impulses.

Methods

impl<N: Copy + Zero> ImpulseCache<N>[src]

pub fn new() -> Self[src]

Create a new empty cache.

pub fn clear(&mut self)[src]

Clear the cache.

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

The number of impulses on this cache.

pub fn contains(&self, contact_id: GenerationalId) -> bool[src]

Test if the cache already contains the specified contact.

pub fn get(&self, contact_id: GenerationalId) -> N[src]

Get the impulse stored for the specified contact.

Returns 0 if no cache entry is registered for this contact.

pub fn entry_id(&mut self, contact_id: GenerationalId) -> usize[src]

Retrieve the index on the cache vector associated to the given contact.

Trait Implementations

impl<N: Default> Default for ImpulseCache<N>[src]

impl<N> Index<usize> for ImpulseCache<N>[src]

type Output = N

The returned type after indexing.

impl<N> IndexMut<usize> for ImpulseCache<N>[src]

Auto Trait Implementations

impl<N> Send for ImpulseCache<N> where
    N: Send

impl<N> Sync for ImpulseCache<N> where
    N: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

type Output = T

Should always be Self