pub type Box3d = Box3<f64>;Expand description
3D double-precision axis-aligned bounding box.
Aliased Type§
#[repr(C)]pub struct Box3d {
pub min: Vector3<f64>,
pub max: Vector3<f64>,
}Fields§
§min: Vector3<f64>Minimum corner.
max: Vector3<f64>Maximum corner.