[][src]Trait ncollide2d::pipeline::narrow_phase::ContactManifoldGenerator

pub trait ContactManifoldGenerator<N: RealField>: Any + Send + Sync {
    fn generate_contacts(
        &mut self,
        dispatcher: &dyn ContactDispatcher<N>,
        ma: &Isometry<N>,
        a: &dyn Shape<N>,
        proc1: Option<&dyn ContactPreprocessor<N>>,
        mb: &Isometry<N>,
        b: &dyn Shape<N>,
        proc2: Option<&dyn ContactPreprocessor<N>>,
        prediction: &ContactPrediction<N>,
        manifold: &mut ContactManifold<N>
    ) -> bool; fn init_manifold(&self) -> ContactManifold<N> { ... } }

An algorithm to compute contact points, normals and penetration depths between two specific objects.

Required methods

fn generate_contacts(
    &mut self,
    dispatcher: &dyn ContactDispatcher<N>,
    ma: &Isometry<N>,
    a: &dyn Shape<N>,
    proc1: Option<&dyn ContactPreprocessor<N>>,
    mb: &Isometry<N>,
    b: &dyn Shape<N>,
    proc2: Option<&dyn ContactPreprocessor<N>>,
    prediction: &ContactPrediction<N>,
    manifold: &mut ContactManifold<N>
) -> bool

Runs the collision detection on two objects. It is assumed that the same collision detector (the same structure) is always used with the same pair of objects.

Returns false if persisting this algorithm for re-use is unlikely to improve performance, e.g. due to the objects being distant. Note that if the ContactManifoldGenerator would likely be immediately reconstructed in the next time-step, dropping it is sub-optimal regardless.

Loading content...

Provided methods

fn init_manifold(&self) -> ContactManifold<N>

Generate an empty contact manifold configured as required by this contact manifold generator.

Loading content...

Implementors

impl<N: RealField> ContactManifoldGenerator<N> for BallBallManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for BallConvexPolyhedronManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for CapsuleCapsuleManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for CapsuleShapeManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for CompositeShapeCompositeShapeManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for CompositeShapeShapeManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for ConvexPolyhedronConvexPolyhedronManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for HeightFieldShapeManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for PlaneBallManifoldGenerator<N>[src]

impl<N: RealField> ContactManifoldGenerator<N> for PlaneConvexPolyhedronManifoldGenerator<N>[src]

Loading content...