pub type BoundingBox<T> = BoundingSpace3<T>;
pub struct BoundingBox<T> { pub lower: OPoint<T, Const<3>>, pub upper: OPoint<T, Const<3>>, }
lower: OPoint<T, Const<3>>
upper: OPoint<T, Const<3>>