[][src]Struct ncollide3d::query::ContactKinematic

pub struct ContactKinematic<N: RealField> { /* fields omitted */ }

Local contact kinematic of a pair of solids around two given points.

This is used to update the localization of contact points between two solids from one frame to another. To achieve this, the local shape of the solids around the given points are approximated by either dilated lines (unbounded cylinders), planes, dilated points (spheres).

Methods

impl<N: RealField> ContactKinematic<N>[src]

pub fn new() -> Self[src]

Initializes an empty contact kinematic.

All the contact kinematic information must be filled using methods prefixed by set_.

pub fn transform1(&mut self, m: &Isometry<N>)[src]

Applies the given transformation to the first set of contact information.

pub fn transform2(&mut self, m: &Isometry<N>)[src]

Applies the given transformation to the second set of contact information.

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

The dilation of the first solid.

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

The dilation of the second solid.

pub fn local1(&self) -> Point<N>[src]

The tracked point in local space of the first solid.

This may not correspond to the contact point in the local space of the first since it does not takes the dilation into account.

pub fn local2(&self) -> Point<N>[src]

The tracked point in local space of the second solid.

This may not correspond to the contact point in the local space of the second solid since it does not takes the dilation into account.

pub fn feature1(&self) -> FeatureId[src]

The shape-dependent identifier of the feature of the first solid on which lies the contact point.

pub fn feature2(&self) -> FeatureId[src]

The shape-dependent identifier of the feature of the second solid on which lies the contact point.

pub fn set_feature1(&mut self, f: FeatureId)[src]

Sets the shape-dependent identifier of the feature of the first solid on which lies the contact point.

pub fn set_feature2(&mut self, f: FeatureId)[src]

Sets the shape-dependent identifier of the feature of the second solid on which lies the contact point.

pub fn set_dilation1(&mut self, margin: N)[src]

Sets the dilation of the first solid.

pub fn set_dilation2(&mut self, margin: N)[src]

Sets the dilation of the second solid.

pub fn approx1(&self) -> &LocalShapeApproximation<N>[src]

The local approximation of the first shape.

pub fn approx2(&self) -> &LocalShapeApproximation<N>[src]

The local approximation of the first shape.

pub fn approx1_mut(&mut self) -> &mut LocalShapeApproximation<N>[src]

The local approximation of the first shape.

pub fn approx2_mut(&mut self) -> &mut LocalShapeApproximation<N>[src]

The local approximation of the second shape.

pub fn set_approx1(
    &mut self,
    feature: FeatureId,
    point: Point<N>,
    geom: NeighborhoodGeometry<N>
)
[src]

Sets the local approximation of the first shape.

pub fn set_approx2(
    &mut self,
    feature: FeatureId,
    point: Point<N>,
    geom: NeighborhoodGeometry<N>
)
[src]

Sets the local approximation of the second shape.

pub fn contact(
    &self,
    m1: &Isometry<N>,
    s1: &dyn Shape<N>,
    deformations1: Option<&[N]>,
    m2: &Isometry<N>,
    s2: &dyn Shape<N>,
    deformations2: Option<&[N]>,
    default_normal1: &Unit<Vector<N>>
) -> Option<Contact<N>>
[src]

Computes the updated contact points with the new positions of the solids.

The vector default_normal1 is the normal of the resulting contact in the rare case where the contact normal cannot be determined by the update. Typically, this should be set to the latest contact normal known.

Trait Implementations

impl<N: Clone + RealField> Clone for ContactKinematic<N>[src]

impl<N: Copy + RealField> Copy for ContactKinematic<N>[src]

impl<N: Debug + RealField> Debug for ContactKinematic<N>[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for ContactKinematic<N> where
    N: RefUnwindSafe + Scalar

impl<N> Send for ContactKinematic<N> where
    N: Scalar

impl<N> Sync for ContactKinematic<N> where
    N: Scalar

impl<N> Unpin for ContactKinematic<N> where
    N: Scalar + Unpin

impl<N> UnwindSafe for ContactKinematic<N> where
    N: Scalar + UnwindSafe

Blanket Implementations

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

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

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

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Slottable for T where
    T: Copy
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,