Trait heron::rapier_plugin::rapier::ncollide::pipeline::ContactDispatcher[][src]

pub trait ContactDispatcher<N>: Send + Sync + Any {
    pub fn get_contact_algorithm(
        &self,
        a: &(dyn Shape<N> + 'static),
        b: &(dyn Shape<N> + 'static)
    ) -> Option<Box<dyn ContactManifoldGenerator<N> + 'static, Global>>; }

Required methods

pub fn get_contact_algorithm(
    &self,
    a: &(dyn Shape<N> + 'static),
    b: &(dyn Shape<N> + 'static)
) -> Option<Box<dyn ContactManifoldGenerator<N> + 'static, Global>>
[src]

Allocate a collision algorithm corresponding to a pair of objects with the given shapes.

Loading content...

Implementors

impl<N> ContactDispatcher<N> for DefaultContactDispatcher where
    N: RealField
[src]

Loading content...