2019-03-23 21:29:07 +08:00
|
|
|
use crate::base::dimension::{U2, U3};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::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>;
|