Trait heron::rapier_plugin::rapier::ncollide::pipeline::narrow_phase::ProximityDispatcher[][src]

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

Required methods

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

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

Loading content...

Implementors

impl<N> ProximityDispatcher<N> for DefaultProximityDispatcher where
    N: RealField
[src]

Loading content...