pub type Point3<T> = PointN<[T; 3]>;
A 3-dimensional point with scalar type T.
T
pub struct Point3<T>(pub [T; 3]);
0: [T; 3]