use na::Real;
use bounding_volume::{BoundingSphere, HasBoundingVolume};
use math::Isometry;
use shape::Shape;
impl<N: Real> HasBoundingVolume<N, BoundingSphere<N>> for Shape<N> {
#[inline]
fn bounding_volume(&self, m: &Isometry<N>) -> BoundingSphere<N> {
self.bounding_sphere(m)
}
}