2018-02-02 19:26:35 +08:00
|
|
|
use num::{One, Zero};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
use alga::general::{ClosedAdd, ClosedMul};
|
|
|
|
|
2018-05-19 23:15:15 +08:00
|
|
|
use base::allocator::Allocator;
|
2018-10-22 13:00:10 +08:00
|
|
|
use base::dimension::DimName;
|
|
|
|
use base::{DefaultAllocator, MatrixN, Scalar};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
use geometry::Rotation;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N, D: DimName> Rotation<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Scalar + Zero + One,
|
|
|
|
DefaultAllocator: Allocator<N, D, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
/// Creates a new square identity rotation of the given `dimension`.
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn identity() -> Rotation<N, D> {
|
|
|
|
Self::from_matrix_unchecked(MatrixN::<N, D>::identity())
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N, D: DimName> One for Rotation<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Scalar + Zero + One + ClosedAdd + ClosedMul,
|
|
|
|
DefaultAllocator: Allocator<N, D, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn one() -> Self {
|
|
|
|
Self::identity()
|
|
|
|
}
|
|
|
|
}
|