use na::Bounded; use na; use bounding_volume::{HasBoundingVolume, BoundingSphere}; use shape::Plane; use math::Point; impl
HasBoundingVolume {
let center = na::origin();
let radius = Bounded::max_value(); // FIXME: is this a good idea?
BoundingSphere::new(center, radius)
}
}