2016-12-05 05:44:42 +08:00
|
|
|
use num::{Zero, One};
|
|
|
|
use std::fmt;
|
|
|
|
use approx::ApproxEq;
|
|
|
|
|
|
|
|
use alga::general::{Real, ClosedNeg};
|
|
|
|
|
|
|
|
use core::{Scalar, ColumnVector, OwnedSquareMatrix};
|
|
|
|
use core::dimension::{DimName, DimNameSum, DimNameAdd, U1};
|
|
|
|
use core::storage::{Storage, StorageMut, Owned};
|
|
|
|
use core::allocator::Allocator;
|
|
|
|
|
|
|
|
/// A translation with an owned vector storage.
|
|
|
|
pub type OwnedTranslation<N, D, S> = TranslationBase<N, D, Owned<N, D, U1, <S as Storage<N, D, U1>>::Alloc>>;
|
|
|
|
|
|
|
|
/// A translation.
|
|
|
|
#[repr(C)]
|
2017-02-16 05:04:34 +08:00
|
|
|
#[derive(Hash, Debug, Clone, Copy)]
|
|
|
|
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
|
2016-12-05 05:44:42 +08:00
|
|
|
pub struct TranslationBase<N: Scalar, D: DimName, S/*: Storage<N, D, U1>*/> {
|
2017-02-13 01:17:09 +08:00
|
|
|
/// The translation coordinates, i.e., how much is added to a point's coordinates when it is
|
|
|
|
/// translated.
|
2016-12-05 05:44:42 +08:00
|
|
|
pub vector: ColumnVector<N, D, S>
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N, D: DimName, S> TranslationBase<N, D, S>
|
|
|
|
where N: Scalar,
|
|
|
|
S: Storage<N, D, U1> {
|
|
|
|
/// Creates a new translation from the given vector.
|
|
|
|
#[inline]
|
|
|
|
pub fn from_vector(vector: ColumnVector<N, D, S>) -> TranslationBase<N, D, S> {
|
|
|
|
TranslationBase {
|
|
|
|
vector: vector
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Inverts `self`.
|
|
|
|
#[inline]
|
|
|
|
pub fn inverse(&self) -> OwnedTranslation<N, D, S>
|
|
|
|
where N: ClosedNeg {
|
|
|
|
TranslationBase::from_vector(-&self.vector)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Converts this translation into its equivalent homogeneous transformation matrix.
|
|
|
|
#[inline]
|
|
|
|
pub fn to_homogeneous(&self) -> OwnedSquareMatrix<N, DimNameSum<D, U1>, S::Alloc>
|
|
|
|
where N: Zero + One,
|
|
|
|
D: DimNameAdd<U1>,
|
|
|
|
S::Alloc: Allocator<N, DimNameSum<D, U1>, DimNameSum<D, U1>> {
|
|
|
|
let mut res = OwnedSquareMatrix::<N, _, S::Alloc>::identity();
|
|
|
|
res.fixed_slice_mut::<D, U1>(0, D::dim()).copy_from(&self.vector);
|
|
|
|
|
|
|
|
res
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl<N, D: DimName, S> TranslationBase<N, D, S>
|
|
|
|
where N: Scalar + ClosedNeg,
|
|
|
|
S: StorageMut<N, D, U1> {
|
|
|
|
/// Inverts `self` in-place.
|
|
|
|
#[inline]
|
|
|
|
pub fn inverse_mut(&mut self) {
|
|
|
|
self.vector.neg_mut()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N, D: DimName, S> Eq for TranslationBase<N, D, S>
|
|
|
|
where N: Scalar + Eq,
|
|
|
|
S: Storage<N, D, U1> {
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N, D: DimName, S> PartialEq for TranslationBase<N, D, S>
|
|
|
|
where N: Scalar + PartialEq,
|
|
|
|
S: Storage<N, D, U1> {
|
|
|
|
#[inline]
|
|
|
|
fn eq(&self, right: &TranslationBase<N, D, S>) -> bool {
|
|
|
|
self.vector == right.vector
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<N, D: DimName, S> ApproxEq for TranslationBase<N, D, S>
|
|
|
|
where N: Scalar + ApproxEq,
|
|
|
|
S: Storage<N, D, U1>,
|
|
|
|
N::Epsilon: Copy {
|
|
|
|
type Epsilon = N::Epsilon;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn default_epsilon() -> Self::Epsilon {
|
|
|
|
N::default_epsilon()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn default_max_relative() -> Self::Epsilon {
|
|
|
|
N::default_max_relative()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn default_max_ulps() -> u32 {
|
|
|
|
N::default_max_ulps()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn relative_eq(&self, other: &Self, epsilon: Self::Epsilon, max_relative: Self::Epsilon) -> bool {
|
|
|
|
self.vector.relative_eq(&other.vector, epsilon, max_relative)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
|
|
|
|
self.vector.ulps_eq(&other.vector, epsilon, max_ulps)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Display
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
impl<N, D: DimName, S> fmt::Display for TranslationBase<N, D, S>
|
|
|
|
where N: Real + fmt::Display,
|
|
|
|
S: Storage<N, D, U1>,
|
|
|
|
S::Alloc: Allocator<usize, D, U1> {
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
let precision = f.precision().unwrap_or(3);
|
|
|
|
|
|
|
|
try!(writeln!(f, "TranslationBase {{"));
|
|
|
|
try!(write!(f, "{:.*}", precision, self.vector));
|
|
|
|
writeln!(f, "}}")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// // /*
|
|
|
|
// // *
|
|
|
|
// // * Absolute
|
|
|
|
// // *
|
|
|
|
// // */
|
|
|
|
// // impl<N: Absolute> Absolute for $t<N> {
|
|
|
|
// // type AbsoluteValue = $submatrix<N::AbsoluteValue>;
|
|
|
|
// //
|
|
|
|
// // #[inline]
|
|
|
|
// // fn abs(m: &$t<N>) -> $submatrix<N::AbsoluteValue> {
|
|
|
|
// // Absolute::abs(&m.submatrix)
|
|
|
|
// // }
|
|
|
|
// // }
|
|
|
|
// */
|