pub type Aabb3 = Aabb3<f32>;
pub struct Aabb3 { pub min: Point3<f32>, pub max: Point3<f32>, }
min: Point3<f32>
Minimum point of the AABB
max: Point3<f32>
Maximum point of the AABB