1
2
3
4
5
6
7
8
9
use core::dimension::{U2, U3};

use geometry::Translation;

/// A 2-dimensional translation.
pub type Translation2<N> = Translation<N, U2>;

/// A 3-dimensional translation.
pub type Translation3<N> = Translation<N, U3>;