pub type Box3d = Box3<f64>;
3D double-precision axis-aligned bounding box.
#[repr(C)]pub struct Box3d { pub min: Vector3<f64>, pub max: Vector3<f64>, }
min: Vector3<f64>
max: Vector3<f64>