use bounding_volume::{BoundingSphere, HasBoundingVolume}; use math::{Isometry, Point}; use shape::Shape; impl> HasBoundingVolume> for Shape { #[inline] fn bounding_volume(&self, m: &M) -> BoundingSphere

{ self.bounding_sphere(m) } }