[][src]Enum ncollide3d::world::GeometricQueryType

pub enum GeometricQueryType<N: Real> {
    Contacts(N, N),
    Proximity(N),
}

The kind of query a CollisionObject may be involved on.

The following queries are executed for a given pair of GeometricQueryType associated with two collision objects:

  • Contacts + Contacts = exact contact point coputation.
  • Contacts + Proximity = proximity test only.
  • Proximity + Proximity = proximity test only.

Variants

Contacts(N, N)

This objects can respond to both contact point computation and proximity queries.

Proximity(N)

This object can respond to proximity tests only.

Methods

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

pub fn query_limit(&self) -> N[src]

The numerical distance limit of relevance for this query.

If two objects are separated by a distance greater than the sum of their respective query_limit, the corresponding query will not by performed. For proximity queries, non-intersecting object closer than a distance equal to the sum of their query_limit will be reported as Proximity::WithinMargin.

pub fn contact_queries_to_prediction(
    self,
    other: Self
) -> Option<ContactPrediction<N>>
[src]

Given two contact query types, returns the corresponding contact prediction parameters.

Returns None if any of self or other is not a GeometricQueryType::Contacts.

pub fn is_contacts_query(&self) -> bool[src]

Returns true if this is a contacts query type.

pub fn is_proximity_query(&self) -> bool[src]

Returns true if this is a proximity query type.

Trait Implementations

impl<N: Copy + Real> Copy for GeometricQueryType<N>[src]

impl<N: PartialEq + Real> PartialEq<GeometricQueryType<N>> for GeometricQueryType<N>[src]

impl<N: Clone + Real> Clone for GeometricQueryType<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 GeometricQueryType<N>[src]

Auto Trait Implementations

impl<N> Send for GeometricQueryType<N>

impl<N> Sync for GeometricQueryType<N>

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 = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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> Any for T where
    T: 'static + ?Sized
[src]

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

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

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Any + Debug
[src]

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the same as the type T Read more

impl<T> Same for T

type Output = T

Should always be Self