1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
use crate::bounding_volume::{BoundingSphere, HasBoundingVolume}; use crate::math::Isometry; use crate::shape::TriMesh; use na::RealField; impl<N: RealField> HasBoundingVolume<N, BoundingSphere<N>> for TriMesh<N> { #[inline] fn bounding_volume(&self, m: &Isometry<N>) -> BoundingSphere<N> { self.aabb().bounding_sphere().transform_by(m) } #[inline] fn local_bounding_volume(&self) -> BoundingSphere<N> { self.aabb().bounding_sphere() } }