2019-03-23 21:29:07 +08:00
|
|
|
use crate::geometry::Translation;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2018-10-28 14:33:14 +08:00
|
|
|
/// A 1-dimensional translation.
|
2021-04-07 20:29:20 +08:00
|
|
|
pub type Translation1<N> = Translation<N, 1>;
|
2018-10-28 14:33:14 +08:00
|
|
|
|
2016-12-05 05:44:42 +08:00
|
|
|
/// A 2-dimensional translation.
|
2021-04-07 20:29:20 +08:00
|
|
|
pub type Translation2<N> = Translation<N, 2>;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
/// A 3-dimensional translation.
|
2021-04-07 20:29:20 +08:00
|
|
|
pub type Translation3<N> = Translation<N, 3>;
|
2018-10-28 14:33:14 +08:00
|
|
|
|
|
|
|
/// A 4-dimensional translation.
|
2021-04-07 20:29:20 +08:00
|
|
|
pub type Translation4<N> = Translation<N, 4>;
|
2018-10-28 14:33:14 +08:00
|
|
|
|
|
|
|
/// A 5-dimensional translation.
|
2021-04-07 20:29:20 +08:00
|
|
|
pub type Translation5<N> = Translation<N, 5>;
|
2018-10-28 14:33:14 +08:00
|
|
|
|
|
|
|
/// A 6-dimensional translation.
|
2021-04-07 20:29:20 +08:00
|
|
|
pub type Translation6<N> = Translation<N, 6>;
|