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