nalgebra/src/geometry/rotation_construction.rs

33 lines
733 B
Rust
Raw Normal View History

2018-02-02 19:26:35 +08:00
use num::{One, Zero};
use alga::general::{ClosedAdd, ClosedMul};
use base::allocator::Allocator;
2018-10-22 13:00:10 +08:00
use base::dimension::DimName;
use base::{DefaultAllocator, MatrixN, Scalar};
use geometry::Rotation;
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>,
{
/// Creates a new square identity rotation of the given `dimension`.
#[inline]
pub fn identity() -> Rotation<N, D> {
Self::from_matrix_unchecked(MatrixN::<N, D>::identity())
}
}
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>,
{
#[inline]
fn one() -> Self {
Self::identity()
}
}