2019-03-23 21:29:07 +08:00
|
|
|
use crate::base::dimension::{U1, U2, U3, U4, U5, U6};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::geometry::Point;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
/// A statically sized 1-dimensional column point.
|
2020-11-21 00:46:03 +08:00
|
|
|
///
|
|
|
|
/// **Because this is an alias, not all its methods are listed here. See the [`Point`](crate::Point) type too.**
|
2016-12-05 05:44:42 +08:00
|
|
|
pub type Point1<N> = Point<N, U1>;
|
|
|
|
/// A statically sized 2-dimensional column point.
|
2020-11-21 00:46:03 +08:00
|
|
|
///
|
|
|
|
/// **Because this is an alias, not all its methods are listed here. See the [`Point`](crate::Point) type too.**
|
2016-12-05 05:44:42 +08:00
|
|
|
pub type Point2<N> = Point<N, U2>;
|
|
|
|
/// A statically sized 3-dimensional column point.
|
2020-11-21 00:46:03 +08:00
|
|
|
///
|
|
|
|
/// **Because this is an alias, not all its methods are listed here. See the [`Point`](crate::Point) type too.**
|
2016-12-05 05:44:42 +08:00
|
|
|
pub type Point3<N> = Point<N, U3>;
|
|
|
|
/// A statically sized 4-dimensional column point.
|
2020-11-21 00:46:03 +08:00
|
|
|
///
|
|
|
|
/// **Because this is an alias, not all its methods are listed here. See the [`Point`](crate::Point) type too.**
|
2016-12-05 05:44:42 +08:00
|
|
|
pub type Point4<N> = Point<N, U4>;
|
|
|
|
/// A statically sized 5-dimensional column point.
|
2020-11-21 00:46:03 +08:00
|
|
|
///
|
|
|
|
/// **Because this is an alias, not all its methods are listed here. See the [`Point`](crate::Point) type too.**
|
2016-12-05 05:44:42 +08:00
|
|
|
pub type Point5<N> = Point<N, U5>;
|
|
|
|
/// A statically sized 6-dimensional column point.
|
2020-11-21 00:46:03 +08:00
|
|
|
///
|
|
|
|
/// **Because this is an alias, not all its methods are listed here. See the [`Point`](crate::Point) type too.**
|
2016-12-05 05:44:42 +08:00
|
|
|
pub type Point6<N> = Point<N, U6>;
|