pub trait Aabb<S: Ring>: Stereometric<S> {
// Required method
fn aabb(&self) -> Aabb3<S>;
}Expand description
Trait for computing the axis-aligned bounding volume of a given shape.
Note for ‘Unbounded’ shapes some of the components will contain positive or negative infinity.