pub trait HasBoundingVolume<N: RealField + Copy, BV> {
    fn bounding_volume(&self, m: &Isometry<N>) -> BV;

    fn local_bounding_volume(&self) -> BV { ... }
}
Expand description

Traits of objects having a bounding volume.

Required methods

The bounding volume of self transformed by m.

Provided methods

The bounding volume of self.

Implementors