[][src]Struct ncollide_geometry::query::ContactPrediction

pub struct ContactPrediction<N: Real> {
    pub linear: N,
    pub angular1: N,
    pub angular2: N,
}

The prediction parameters for contact determination.n

Fields

linear: N

The linear prediction.

angular1: N

The angular regularization for the first solid.

angular2: N

The angular regularization for the second solid.

Methods

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

pub fn new(linear: N, angular1: N, angular2: N) -> Self[src]

Initialize prediction parameters.

Auto Trait Implementations

impl<N> Send for ContactPrediction<N>

impl<N> Sync for ContactPrediction<N>

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<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self