[src]

Trait ncollide2df64::implicit::PreferedSamplingDirections

pub trait PreferedSamplingDirections<V, M> {
    fn sample(&self, &M, |V|);
}

Trait of geometries having prefered sampling directions for the Minkowski sampling algorithm.

Those directions are usually the geometry faces normals.

Required Methods

fn sample(&self, &M, |V|)

Applies a function to this geometry with a given transform.

Implementors