pub trait Aabb<S>: Stereometric<S>where
S: Ring,{
// 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.