2018-02-02 19:26:35 +08:00
|
|
|
use num::{One, Zero};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2021-03-06 00:08:46 +08:00
|
|
|
use simba::scalar::{ClosedAdd, ClosedMul, SupersetOf};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
use crate::base::{SMatrix, Scalar};
|
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
|
|
|
|
2020-11-21 18:21:47 +08:00
|
|
|
/// # Identity
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T, const D: usize> Rotation<T, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
2021-04-11 17:00:38 +08:00
|
|
|
T: Scalar + Zero + One,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
/// Creates a new square identity rotation of the given `dimension`.
|
2018-11-04 14:20:49 +08:00
|
|
|
///
|
|
|
|
/// # 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);
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2021-04-11 17:00:38 +08:00
|
|
|
pub fn identity() -> Rotation<T, D> {
|
|
|
|
Self::from_matrix_unchecked(SMatrix::<T, D, D>::identity())
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T: Scalar, const D: usize> Rotation<T, D> {
|
2021-03-06 00:08:46 +08:00
|
|
|
/// 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>,
|
|
|
|
{
|
|
|
|
crate::convert(self)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 17:00:38 +08:00
|
|
|
impl<T, const D: usize> One for Rotation<T, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
2021-04-11 17:00:38 +08:00
|
|
|
T: Scalar + Zero + One + ClosedAdd + ClosedMul,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn one() -> Self {
|
|
|
|
Self::identity()
|
|
|
|
}
|
|
|
|
}
|