Struct heron::rapier_plugin::rapier::ncollide::query::ContactKinematic[][src]

pub struct ContactKinematic<N> where
    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).

Implementations

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

pub fn new() -> ContactKinematic<N>[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, U3, Unit<Quaternion<N>>>)[src]

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

pub fn transform2(&mut self, m: &Isometry<N, U3, Unit<Quaternion<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, U3>[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, U3>[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, U3>,
    geom: NeighborhoodGeometry<N>
)
[src]

Sets the local approximation of the first shape.

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

Sets the local approximation of the second shape.

pub fn contact(
    &self,
    m1: &Isometry<N, U3, Unit<Quaternion<N>>>,
    s1: &(dyn Shape<N> + 'static),
    deformations1: Option<&[N]>,
    m2: &Isometry<N, U3, Unit<Quaternion<N>>>,
    s2: &(dyn Shape<N> + 'static),
    deformations2: Option<&[N]>,
    default_normal1: &Unit<Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>>
) -> 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 for ContactKinematic<N> where
    N: Clone + RealField
[src]

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

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

Auto Trait Implementations

impl<N> RefUnwindSafe for ContactKinematic<N> where
    N: RefUnwindSafe
[src]

impl<N> Send for ContactKinematic<N>[src]

impl<N> Sync for ContactKinematic<N>[src]

impl<N> Unpin for ContactKinematic<N> where
    N: Unpin
[src]

impl<N> UnwindSafe for ContactKinematic<N> where
    N: UnwindSafe
[src]

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> Component for T where
    T: 'static + Send + Sync

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> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Resource for T where
    T: 'static + Send + Sync

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<T> TypeData for T where
    T: 'static + Send + Sync + Clone

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,