nalgebra/src/geometry/rotation_construction.rs

64 lines
1.5 KiB
Rust
Raw Normal View History

2018-02-02 19:26:35 +08:00
use num::{One, Zero};
use simba::scalar::{ClosedAdd, ClosedMul, SupersetOf};
use crate::base::{MatrixN, Scalar};
2019-03-23 21:29:07 +08:00
use crate::geometry::Rotation;
/// # Identity
impl<N, const D: usize> Rotation<N, D>
2018-02-02 19:26:35 +08:00
where
N: Scalar + Zero + One,
// DefaultAllocator: Allocator<N, D, D>,
2018-02-02 19:26:35 +08:00
{
/// Creates a new square identity rotation of the given `dimension`.
///
/// # Example
/// ```
/// # use nalgebra::Quaternion;
/// let rot1 = Quaternion::identity();
/// let rot2 = Quaternion::new(1.0, 2.0, 3.0, 4.0);
///
/// assert_eq!(rot1 * rot2, rot2);
/// assert_eq!(rot2 * rot1, rot2);
/// ```
#[inline]
pub fn identity() -> Rotation<N, D> {
Self::from_matrix_unchecked(MatrixN::<N, D>::identity())
}
}
impl<N: Scalar, const D: usize> Rotation<N, D>
// where
// DefaultAllocator: Allocator<N, D, D>,
{
/// Cast the components of `self` to another type.
///
/// # Example
/// ```
/// # use nalgebra::Rotation2;
/// let rot = Rotation2::<f64>::identity();
/// let rot2 = rot.cast::<f32>();
/// assert_eq!(rot2, Rotation2::<f32>::identity());
/// ```
pub fn cast<To: Scalar>(self) -> Rotation<To, D>
where
Rotation<To, D>: SupersetOf<Self>,
// DefaultAllocator: Allocator<To, D, D>,
{
crate::convert(self)
}
}
impl<N, const D: usize> 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>,
2018-02-02 19:26:35 +08:00
{
#[inline]
fn one() -> Self {
Self::identity()
}
}