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

{ self.aabb(m) } }