pub trait HasBoundingVolume<N: Real, BV> {
    fn bounding_volume(&self, m: &Isometry<N>) -> BV;
}
Expand description

Traits of objects having a bounding volume.

Required Methods§

The bounding volume of self transformed by m.

Implementors§