nalgebra/src/geometry/transform_construction.rs

59 lines
1.6 KiB
Rust
Raw Normal View History

use num::One;
2020-03-21 19:16:46 +08:00
use simba::scalar::RealField;
2019-03-23 21:29:07 +08:00
use crate::base::allocator::Allocator;
use crate::base::dimension::{DimNameAdd, DimNameSum, U1};
use crate::base::{DefaultAllocator, MatrixN};
2019-03-23 21:29:07 +08:00
use crate::geometry::{TCategory, Transform};
2019-03-25 18:21:41 +08:00
impl<N: RealField, D: DimNameAdd<U1>, C: TCategory> Transform<N, D, C>
2020-04-06 00:49:48 +08:00
where
DefaultAllocator: Allocator<N, DimNameSum<D, U1>, DimNameSum<D, U1>>,
2018-02-02 19:26:35 +08:00
{
/// Creates a new identity transform.
2018-11-08 14:51:43 +08:00
///
/// # Example
///
/// ```
/// # use nalgebra::{Transform2, Projective2, Affine2, Transform3, Projective3, Affine3, Point2, Point3};
///
/// let pt = Point2::new(1.0, 2.0);
/// let t = Projective2::identity();
/// assert_eq!(t * pt, pt);
///
/// let aff = Affine2::identity();
/// assert_eq!(aff * pt, pt);
///
/// let aff = Transform2::identity();
/// assert_eq!(aff * pt, pt);
///
/// // Also works in 3D.
/// let pt = Point3::new(1.0, 2.0, 3.0);
/// let t = Projective3::identity();
/// assert_eq!(t * pt, pt);
///
/// let aff = Affine3::identity();
/// assert_eq!(aff * pt, pt);
///
/// let aff = Transform3::identity();
/// assert_eq!(aff * pt, pt);
/// ```
#[inline]
pub fn identity() -> Self {
Self::from_matrix_unchecked(MatrixN::<_, DimNameSum<D, U1>>::identity())
}
}
2019-03-25 18:21:41 +08:00
impl<N: RealField, D: DimNameAdd<U1>, C: TCategory> One for Transform<N, D, C>
2020-04-06 00:49:48 +08:00
where
DefaultAllocator: Allocator<N, DimNameSum<D, U1>, DimNameSum<D, U1>>,
2018-02-02 19:26:35 +08:00
{
/// Creates a new identity transform.
#[inline]
fn one() -> Self {
Self::identity()
}
}