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