1 use crate::base::dimension::{U1, U2, U3, U4, U5, U6};
2 
3 use crate::geometry::Point;
4 
5 /// A statically sized 1-dimensional column point.
6 pub type Point1<N> = Point<N, U1>;
7 /// A statically sized 2-dimensional column point.
8 pub type Point2<N> = Point<N, U2>;
9 /// A statically sized 3-dimensional column point.
10 pub type Point3<N> = Point<N, U3>;
11 /// A statically sized 4-dimensional column point.
12 pub type Point4<N> = Point<N, U4>;
13 /// A statically sized 5-dimensional column point.
14 pub type Point5<N> = Point<N, U5>;
15 /// A statically sized 6-dimensional column point.
16 pub type Point6<N> = Point<N, U6>;
17