pub type Point3 = Vec3;
Type alias for a 3D point.
struct Point3 { pub e: [f64; 3], }
e: [f64; 3]
Components stored as [x, y, z].
[x, y, z]