Enum ncollide3d::pipeline::object::GeometricQueryType [−][src]
pub enum GeometricQueryType<N: RealField> { 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
This objects can respond to both contact point computation and proximity queries.
This object can respond to proximity tests only.
Implementations
impl<N: RealField> GeometricQueryType<N>
[src]
impl<N: RealField> 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]
self,
other: Self
) -> Option<ContactPrediction<N>>
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: Clone + RealField> Clone for GeometricQueryType<N>
[src]
impl<N: Clone + RealField> Clone for GeometricQueryType<N>
[src]fn clone(&self) -> GeometricQueryType<N>
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<N: Debug + RealField> Debug for GeometricQueryType<N>
[src]
impl<N: Debug + RealField> Debug for GeometricQueryType<N>
[src]impl<N: PartialEq + RealField> PartialEq<GeometricQueryType<N>> for GeometricQueryType<N>
[src]
impl<N: PartialEq + RealField> PartialEq<GeometricQueryType<N>> for GeometricQueryType<N>
[src]fn eq(&self, other: &GeometricQueryType<N>) -> bool
[src]
fn ne(&self, other: &GeometricQueryType<N>) -> bool
[src]
impl<N: Copy + RealField> Copy for GeometricQueryType<N>
[src]
impl<N: RealField> StructuralPartialEq for GeometricQueryType<N>
[src]
Auto Trait Implementations
impl<N> RefUnwindSafe for GeometricQueryType<N> where
N: RefUnwindSafe,
N: RefUnwindSafe,
impl<N> Send for GeometricQueryType<N>
impl<N> Sync for GeometricQueryType<N>
impl<N> Unpin for GeometricQueryType<N> where
N: Unpin,
N: Unpin,
impl<N> UnwindSafe for GeometricQueryType<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]pub fn to_subset(&self) -> Option<SS>
[src]
pub fn is_in_subset(&self) -> bool
[src]
pub fn to_subset_unchecked(&self) -> SS
[src]
pub fn from_subset(element: &SS) -> SP
[src]
impl<T> Slottable for T where
T: Copy,
[src]
T: Copy,