2018-05-19 23:15:15 +08:00
|
|
|
use base::dimension::{U2, U3};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
use geometry::Translation;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
/// A 2-dimensional translation.
|
|
|
|
pub type Translation2<N> = Translation<N, U2>;
|
|
|
|
|
|
|
|
/// A 3-dimensional translation.
|
|
|
|
pub type Translation3<N> = Translation<N, U3>;
|