2016-12-05 05:44:42 +08:00
|
|
|
use core::dimension::{U2, U3};
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
use geometry::Rotation;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
/// A 2-dimensional rotation matrix.
|
|
|
|
pub type Rotation2<N> = Rotation<N, U2>;
|
|
|
|
|
|
|
|
/// A 3-dimensional rotation matrix.
|
|
|
|
pub type Rotation3<N> = Rotation<N, U3>;
|