nalgebra/src/geometry/unit_complex_conversion.rs

149 lines
4.1 KiB
Rust
Raw Normal View History

2017-02-13 01:17:09 +08:00
use num::Zero;
use num_complex::Complex;
use alga::general::{SubsetOf, SupersetOf, Real};
use alga::linear::Rotation as AlgaRotation;
use core::Matrix3;
use core::dimension::U2;
use geometry::{UnitComplex, Isometry, Similarity, Transform, SuperTCategoryOf, TAffine, Translation,
Point2, Rotation2};
2017-02-13 01:17:09 +08:00
/*
* This file provides the following conversions:
* =============================================
*
* UnitComplex -> UnitComplex
* UnitComplex -> Rotation<U1>
* UnitComplex -> Isometry<U2>
* UnitComplex -> Similarity<U2>
* UnitComplex -> Transform<U2>
2017-02-13 01:17:09 +08:00
* UnitComplex -> Matrix<U3> (homogeneous)
*
* NOTE:
* UnitComplex -> Complex is already provided by: Unit<T> -> T
*/
impl<N1, N2> SubsetOf<UnitComplex<N2>> for UnitComplex<N1>
where N1: Real,
N2: Real + SupersetOf<N1> {
#[inline]
fn to_superset(&self) -> UnitComplex<N2> {
UnitComplex::new_unchecked(self.as_ref().to_superset())
}
#[inline]
fn is_in_subset(uq: &UnitComplex<N2>) -> bool {
::is_convertible::<_, Complex<N1>>(uq.as_ref())
}
#[inline]
unsafe fn from_superset_unchecked(uq: &UnitComplex<N2>) -> Self {
Self::new_unchecked(::convert_ref_unchecked(uq.as_ref()))
}
}
impl<N1, N2> SubsetOf<Rotation2<N2>> for UnitComplex<N1>
2017-02-13 01:17:09 +08:00
where N1: Real,
N2: Real + SupersetOf<N1> {
2017-02-13 01:17:09 +08:00
#[inline]
fn to_superset(&self) -> Rotation2<N2> {
2017-02-13 01:17:09 +08:00
let q: UnitComplex<N2> = self.to_superset();
q.to_rotation_matrix().to_superset()
}
#[inline]
fn is_in_subset(rot: &Rotation2<N2>) -> bool {
::is_convertible::<_, Rotation2<N1>>(rot)
2017-02-13 01:17:09 +08:00
}
#[inline]
unsafe fn from_superset_unchecked(rot: &Rotation2<N2>) -> Self {
2017-02-13 01:17:09 +08:00
let q = UnitComplex::<N2>::from_rotation_matrix(rot);
::convert_unchecked(q)
}
}
impl<N1, N2, R> SubsetOf<Isometry<N2, U2, R>> for UnitComplex<N1>
2017-02-13 01:17:09 +08:00
where N1: Real,
N2: Real + SupersetOf<N1>,
R: AlgaRotation<Point2<N2>> + SupersetOf<UnitComplex<N1>> {
2017-02-13 01:17:09 +08:00
#[inline]
fn to_superset(&self) -> Isometry<N2, U2, R> {
Isometry::from_parts(Translation::identity(), ::convert_ref(self))
2017-02-13 01:17:09 +08:00
}
#[inline]
fn is_in_subset(iso: &Isometry<N2, U2, R>) -> bool {
2017-02-13 01:17:09 +08:00
iso.translation.vector.is_zero()
}
#[inline]
unsafe fn from_superset_unchecked(iso: &Isometry<N2, U2, R>) -> Self {
2017-02-13 01:17:09 +08:00
::convert_ref_unchecked(&iso.rotation)
}
}
impl<N1, N2, R> SubsetOf<Similarity<N2, U2, R>> for UnitComplex<N1>
2017-02-13 01:17:09 +08:00
where N1: Real,
N2: Real + SupersetOf<N1>,
R: AlgaRotation<Point2<N2>> + SupersetOf<UnitComplex<N1>> {
2017-02-13 01:17:09 +08:00
#[inline]
fn to_superset(&self) -> Similarity<N2, U2, R> {
Similarity::from_isometry(::convert_ref(self), N2::one())
2017-02-13 01:17:09 +08:00
}
#[inline]
fn is_in_subset(sim: &Similarity<N2, U2, R>) -> bool {
2017-02-13 01:17:09 +08:00
sim.isometry.translation.vector.is_zero() &&
sim.scaling() == N2::one()
}
#[inline]
unsafe fn from_superset_unchecked(sim: &Similarity<N2, U2, R>) -> Self {
2017-02-13 01:17:09 +08:00
::convert_ref_unchecked(&sim.isometry)
}
}
impl<N1, N2, C> SubsetOf<Transform<N2, U2, C>> for UnitComplex<N1>
2017-02-13 01:17:09 +08:00
where N1: Real,
N2: Real + SupersetOf<N1>,
C: SuperTCategoryOf<TAffine> {
2017-02-13 01:17:09 +08:00
#[inline]
fn to_superset(&self) -> Transform<N2, U2, C> {
Transform::from_matrix_unchecked(self.to_homogeneous().to_superset())
2017-02-13 01:17:09 +08:00
}
#[inline]
fn is_in_subset(t: &Transform<N2, U2, C>) -> bool {
2017-02-13 01:17:09 +08:00
<Self as SubsetOf<_>>::is_in_subset(t.matrix())
}
#[inline]
unsafe fn from_superset_unchecked(t: &Transform<N2, U2, C>) -> Self {
2017-02-13 01:17:09 +08:00
Self::from_superset_unchecked(t.matrix())
}
}
impl<N1: Real, N2: Real + SupersetOf<N1>> SubsetOf<Matrix3<N2>> for UnitComplex<N1> {
#[inline]
fn to_superset(&self) -> Matrix3<N2> {
2017-02-13 01:17:09 +08:00
self.to_homogeneous().to_superset()
}
#[inline]
fn is_in_subset(m: &Matrix3<N2>) -> bool {
::is_convertible::<_, Rotation2<N1>>(m)
2017-02-13 01:17:09 +08:00
}
#[inline]
unsafe fn from_superset_unchecked(m: &Matrix3<N2>) -> Self {
let rot: Rotation2<N1> = ::convert_ref_unchecked(m);
2017-02-13 01:17:09 +08:00
Self::from_rotation_matrix(&rot)
}
}