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