pub type BoundingBox<S> = BoundingBox<S, 3>;Expand description
A 3D bounding box.
Aliased Type§
pub struct BoundingBox<S> {
pub min: OPoint<S, Const<3>>,
pub max: OPoint<S, Const<3>>,
}Fields§
§min: OPoint<S, Const<3>>X-Y-Z-Minimum corner of the box.
max: OPoint<S, Const<3>>X-Y-Z-Maximum corner of the box.