2018-05-19 21:41:58 +08:00
|
|
|
|
use approx::{AbsDiffEq, RelativeEq, UlpsEq};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
use std::fmt;
|
2017-08-03 01:37:44 +08:00
|
|
|
|
use std::hash;
|
2018-07-20 21:25:55 +08:00
|
|
|
|
#[cfg(feature = "abomonation-serialize")]
|
|
|
|
|
use std::io::{Result as IOResult, Write};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
use std::marker::PhantomData;
|
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
|
#[cfg(feature = "serde-serialize")]
|
2018-10-22 13:00:10 +08:00
|
|
|
|
use serde::{Deserialize, Serialize};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
2017-08-14 20:32:02 +08:00
|
|
|
|
#[cfg(feature = "abomonation-serialize")]
|
|
|
|
|
use abomonation::Abomonation;
|
|
|
|
|
|
2016-12-05 05:44:42 +08:00
|
|
|
|
use alga::general::{Real, SubsetOf};
|
|
|
|
|
use alga::linear::Rotation;
|
2017-02-13 01:17:09 +08:00
|
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
|
use crate::base::allocator::Allocator;
|
|
|
|
|
use crate::base::dimension::{DimName, DimNameAdd, DimNameSum, U1};
|
|
|
|
|
use crate::base::storage::Owned;
|
|
|
|
|
use crate::base::{DefaultAllocator, MatrixN};
|
|
|
|
|
use crate::geometry::{Point, Translation};
|
2017-02-13 01:17:09 +08:00
|
|
|
|
|
2018-10-06 12:44:32 +08:00
|
|
|
|
/// A direct isometry, i.e., a rotation followed by a translation, aka. a rigid-body motion, aka. an element of a Special Euclidean (SE) group.
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[repr(C)]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
#[derive(Debug)]
|
2017-02-16 05:04:34 +08:00
|
|
|
|
#[cfg_attr(feature = "serde-serialize", derive(Serialize, Deserialize))]
|
2018-05-19 21:41:58 +08:00
|
|
|
|
#[cfg_attr(
|
|
|
|
|
feature = "serde-serialize",
|
2018-11-03 20:35:56 +08:00
|
|
|
|
serde(bound(serialize = "R: Serialize,
|
2017-08-03 01:37:44 +08:00
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
2018-11-03 20:35:56 +08:00
|
|
|
|
Owned<N, D>: Serialize"))
|
2018-05-19 21:41:58 +08:00
|
|
|
|
)]
|
|
|
|
|
#[cfg_attr(
|
|
|
|
|
feature = "serde-serialize",
|
2018-11-03 20:35:56 +08:00
|
|
|
|
serde(bound(deserialize = "R: Deserialize<'de>,
|
2017-08-03 01:37:44 +08:00
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
2018-11-03 20:35:56 +08:00
|
|
|
|
Owned<N, D>: Deserialize<'de>"))
|
2018-05-19 21:41:58 +08:00
|
|
|
|
)]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub struct Isometry<N: Real, D: DimName, R>
|
2018-10-22 13:00:10 +08:00
|
|
|
|
where DefaultAllocator: Allocator<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
{
|
2017-02-13 01:17:09 +08:00
|
|
|
|
/// The pure rotational part of this isometry.
|
2018-02-02 19:26:35 +08:00
|
|
|
|
pub rotation: R,
|
2017-02-13 01:17:09 +08:00
|
|
|
|
/// The pure translational part of this isometry.
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub translation: Translation<N, D>,
|
2017-02-13 01:17:09 +08:00
|
|
|
|
|
|
|
|
|
// One dummy private field just to prevent explicit construction.
|
2018-10-22 13:00:10 +08:00
|
|
|
|
#[cfg_attr(
|
|
|
|
|
feature = "serde-serialize",
|
|
|
|
|
serde(skip_serializing, skip_deserializing)
|
|
|
|
|
)]
|
2018-02-02 19:26:35 +08:00
|
|
|
|
_noconstruct: PhantomData<N>,
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-14 20:32:02 +08:00
|
|
|
|
#[cfg(feature = "abomonation-serialize")]
|
2017-08-16 01:36:38 +08:00
|
|
|
|
impl<N, D, R> Abomonation for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
N: Real,
|
|
|
|
|
D: DimName,
|
|
|
|
|
R: Abomonation,
|
|
|
|
|
Translation<N, D>: Abomonation,
|
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
2017-08-14 20:32:02 +08:00
|
|
|
|
{
|
2018-07-20 21:25:55 +08:00
|
|
|
|
unsafe fn entomb<W: Write>(&self, writer: &mut W) -> IOResult<()> {
|
|
|
|
|
self.rotation.entomb(writer)?;
|
|
|
|
|
self.translation.entomb(writer)
|
2017-08-14 20:32:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-20 21:25:55 +08:00
|
|
|
|
fn extent(&self) -> usize {
|
|
|
|
|
self.rotation.extent() + self.translation.extent()
|
2017-08-14 20:32:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
unsafe fn exhume<'a, 'b>(&'a mut self, bytes: &'b mut [u8]) -> Option<&'b mut [u8]> {
|
2018-02-02 19:26:35 +08:00
|
|
|
|
self.rotation
|
|
|
|
|
.exhume(bytes)
|
2017-08-14 20:32:02 +08:00
|
|
|
|
.and_then(|bytes| self.translation.exhume(bytes))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
|
impl<N: Real + hash::Hash, D: DimName + hash::Hash, R: hash::Hash> hash::Hash for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
|
Owned<N, D>: hash::Hash,
|
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
|
fn hash<H: hash::Hasher>(&self, state: &mut H) {
|
|
|
|
|
self.translation.hash(state);
|
|
|
|
|
self.rotation.hash(state);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<N: Real, D: DimName + Copy, R: Rotation<Point<N, D>> + Copy> Copy for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
|
Owned<N, D>: Copy,
|
2018-11-03 20:35:56 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2017-08-03 01:37:44 +08:00
|
|
|
|
|
|
|
|
|
impl<N: Real, D: DimName, R: Rotation<Point<N, D>> + Clone> Clone for Isometry<N, D, R>
|
2018-10-22 13:00:10 +08:00
|
|
|
|
where DefaultAllocator: Allocator<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
{
|
2017-08-03 01:37:44 +08:00
|
|
|
|
#[inline]
|
|
|
|
|
fn clone(&self) -> Self {
|
2019-02-17 05:29:41 +08:00
|
|
|
|
Self::from_parts(self.translation.clone(), self.rotation.clone())
|
2017-08-03 01:37:44 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<N: Real, D: DimName, R: Rotation<Point<N, D>>> Isometry<N, D, R>
|
2018-10-22 13:00:10 +08:00
|
|
|
|
where DefaultAllocator: Allocator<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
/// Creates a new isometry from its rotational and translational parts.
|
2018-10-22 14:04:35 +08:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry3, Translation3, UnitQuaternion, Vector3, Point3};
|
|
|
|
|
/// let tra = Translation3::new(0.0, 0.0, 3.0);
|
|
|
|
|
/// let rot = UnitQuaternion::from_scaled_axis(Vector3::y() * f32::consts::PI);
|
|
|
|
|
/// let iso = Isometry3::from_parts(tra, rot);
|
|
|
|
|
///
|
|
|
|
|
/// assert_relative_eq!(iso * Point3::new(1.0, 2.0, 3.0), Point3::new(-1.0, 2.0, 0.0), epsilon = 1.0e-6);
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
2019-02-17 05:29:41 +08:00
|
|
|
|
pub fn from_parts(translation: Translation<N, D>, rotation: R) -> Self {
|
|
|
|
|
Self {
|
2018-02-02 19:26:35 +08:00
|
|
|
|
rotation: rotation,
|
|
|
|
|
translation: translation,
|
|
|
|
|
_noconstruct: PhantomData,
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Inverts `self`.
|
2018-10-22 14:04:35 +08:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry2, Point2, Vector2};
|
|
|
|
|
/// let iso = Isometry2::new(Vector2::new(1.0, 2.0), f32::consts::FRAC_PI_2);
|
|
|
|
|
/// let inv = iso.inverse();
|
|
|
|
|
/// let pt = Point2::new(1.0, 2.0);
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(inv * (iso * pt), pt);
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
2019-02-17 05:29:41 +08:00
|
|
|
|
pub fn inverse(&self) -> Self {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
let mut res = self.clone();
|
|
|
|
|
res.inverse_mut();
|
|
|
|
|
res
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-22 14:04:35 +08:00
|
|
|
|
/// Inverts `self` in-place.
|
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry2, Point2, Vector2};
|
|
|
|
|
/// let mut iso = Isometry2::new(Vector2::new(1.0, 2.0), f32::consts::FRAC_PI_2);
|
|
|
|
|
/// let pt = Point2::new(1.0, 2.0);
|
|
|
|
|
/// let transformed_pt = iso * pt;
|
|
|
|
|
/// iso.inverse_mut();
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(iso * transformed_pt, pt);
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
|
|
|
|
pub fn inverse_mut(&mut self) {
|
2019-02-03 22:45:25 +08:00
|
|
|
|
self.rotation.two_sided_inverse_mut();
|
2016-12-05 05:44:42 +08:00
|
|
|
|
self.translation.inverse_mut();
|
|
|
|
|
self.translation.vector = self.rotation.transform_vector(&self.translation.vector);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Appends to `self` the given translation in-place.
|
2018-10-22 14:04:35 +08:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry2, Translation2, Vector2};
|
|
|
|
|
/// let mut iso = Isometry2::new(Vector2::new(1.0, 2.0), f32::consts::FRAC_PI_2);
|
|
|
|
|
/// let tra = Translation2::new(3.0, 4.0);
|
|
|
|
|
/// // Same as `iso = tra * iso`.
|
|
|
|
|
/// iso.append_translation_mut(&tra);
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(iso.translation, Translation2::new(4.0, 6.0));
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub fn append_translation_mut(&mut self, t: &Translation<N, D>) {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
self.translation.vector += &t.vector
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Appends to `self` the given rotation in-place.
|
2018-10-22 14:04:35 +08:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry2, Translation2, UnitComplex, Vector2};
|
|
|
|
|
/// let mut iso = Isometry2::new(Vector2::new(1.0, 2.0), f32::consts::PI / 6.0);
|
|
|
|
|
/// let rot = UnitComplex::new(f32::consts::PI / 2.0);
|
|
|
|
|
/// // Same as `iso = rot * iso`.
|
|
|
|
|
/// iso.append_rotation_mut(&rot);
|
|
|
|
|
///
|
|
|
|
|
/// assert_relative_eq!(iso, Isometry2::new(Vector2::new(-2.0, 1.0), f32::consts::PI * 2.0 / 3.0), epsilon = 1.0e-6);
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
|
|
|
|
pub fn append_rotation_mut(&mut self, r: &R) {
|
2018-02-02 19:26:35 +08:00
|
|
|
|
self.rotation = self.rotation.append_rotation(&r);
|
2016-12-05 05:44:42 +08:00
|
|
|
|
self.translation.vector = r.transform_vector(&self.translation.vector);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Appends in-place to `self` a rotation centered at the point `p`, i.e., the rotation that
|
|
|
|
|
/// lets `p` invariant.
|
2018-10-22 14:04:35 +08:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry2, Translation2, UnitComplex, Vector2, Point2};
|
|
|
|
|
/// let mut iso = Isometry2::new(Vector2::new(1.0, 2.0), f32::consts::FRAC_PI_2);
|
|
|
|
|
/// let rot = UnitComplex::new(f32::consts::FRAC_PI_2);
|
|
|
|
|
/// let pt = Point2::new(1.0, 0.0);
|
|
|
|
|
/// iso.append_rotation_wrt_point_mut(&rot, &pt);
|
|
|
|
|
///
|
|
|
|
|
/// assert_relative_eq!(iso * pt, Point2::new(-2.0, 0.0), epsilon = 1.0e-6);
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub fn append_rotation_wrt_point_mut(&mut self, r: &R, p: &Point<N, D>) {
|
2016-12-05 05:44:42 +08:00
|
|
|
|
self.translation.vector -= &p.coords;
|
|
|
|
|
self.append_rotation_mut(r);
|
|
|
|
|
self.translation.vector += &p.coords;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Appends in-place to `self` a rotation centered at the point with coordinates
|
|
|
|
|
/// `self.translation`.
|
2018-10-22 14:04:35 +08:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry2, Translation2, UnitComplex, Vector2, Point2};
|
|
|
|
|
/// let mut iso = Isometry2::new(Vector2::new(1.0, 2.0), f32::consts::FRAC_PI_2);
|
|
|
|
|
/// let rot = UnitComplex::new(f32::consts::FRAC_PI_2);
|
|
|
|
|
/// iso.append_rotation_wrt_center_mut(&rot);
|
|
|
|
|
///
|
|
|
|
|
/// // The translation part should not have changed.
|
|
|
|
|
/// assert_eq!(iso.translation.vector, Vector2::new(1.0, 2.0));
|
|
|
|
|
/// assert_eq!(iso.rotation, UnitComplex::new(f32::consts::PI));
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
|
|
|
|
pub fn append_rotation_wrt_center_mut(&mut self, r: &R) {
|
2018-10-22 14:04:35 +08:00
|
|
|
|
self.rotation = self.rotation.append_rotation(r);
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// NOTE: we don't require `R: Rotation<...>` here because this is not useful for the implementation
|
|
|
|
|
// and makes it hard to use it, e.g., for Transform × Isometry implementation.
|
|
|
|
|
// This is OK since all constructors of the isometry enforce the Rotation bound already (and
|
|
|
|
|
// explicit struct construction is prevented by the dummy ZST field).
|
2017-08-03 01:37:44 +08:00
|
|
|
|
impl<N: Real, D: DimName, R> Isometry<N, D, R>
|
2018-10-22 13:00:10 +08:00
|
|
|
|
where DefaultAllocator: Allocator<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
/// Converts this isometry into its equivalent homogeneous transformation matrix.
|
2018-10-22 14:04:35 +08:00
|
|
|
|
///
|
|
|
|
|
/// # Example
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
|
/// # use std::f32;
|
|
|
|
|
/// # use nalgebra::{Isometry2, Vector2, Matrix3};
|
|
|
|
|
/// let iso = Isometry2::new(Vector2::new(10.0, 20.0), f32::consts::FRAC_PI_6);
|
|
|
|
|
/// let expected = Matrix3::new(0.8660254, -0.5, 10.0,
|
|
|
|
|
/// 0.5, 0.8660254, 20.0,
|
|
|
|
|
/// 0.0, 0.0, 1.0);
|
|
|
|
|
///
|
|
|
|
|
/// assert_relative_eq!(iso.to_homogeneous(), expected, epsilon = 1.0e-6);
|
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
|
pub fn to_homogeneous(&self) -> MatrixN<N, DimNameSum<D, U1>>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
D: DimNameAdd<U1>,
|
|
|
|
|
R: SubsetOf<MatrixN<N, DimNameSum<D, U1>>>,
|
|
|
|
|
DefaultAllocator: Allocator<N, DimNameSum<D, U1>, DimNameSum<D, U1>>,
|
|
|
|
|
{
|
2019-03-23 21:29:07 +08:00
|
|
|
|
let mut res: MatrixN<N, _> = crate::convert_ref(&self.rotation);
|
2018-02-02 19:26:35 +08:00
|
|
|
|
res.fixed_slice_mut::<D, U1>(0, D::dim())
|
|
|
|
|
.copy_from(&self.translation.vector);
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
|
|
res
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
|
impl<N: Real, D: DimName, R> Eq for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
R: Rotation<Point<N, D>> + Eq,
|
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
2018-11-03 20:35:56 +08:00
|
|
|
|
{
|
|
|
|
|
}
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
|
impl<N: Real, D: DimName, R> PartialEq for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
R: Rotation<Point<N, D>> + PartialEq,
|
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
2019-02-17 05:29:41 +08:00
|
|
|
|
fn eq(&self, right: &Self) -> bool {
|
2018-02-02 19:26:35 +08:00
|
|
|
|
self.translation == right.translation && self.rotation == right.rotation
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-19 21:41:58 +08:00
|
|
|
|
impl<N: Real, D: DimName, R> AbsDiffEq for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
2018-05-19 21:41:58 +08:00
|
|
|
|
R: Rotation<Point<N, D>> + AbsDiffEq<Epsilon = N::Epsilon>,
|
2018-02-02 19:26:35 +08:00
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
|
N::Epsilon: Copy,
|
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
type Epsilon = N::Epsilon;
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn default_epsilon() -> Self::Epsilon {
|
|
|
|
|
N::default_epsilon()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-05-19 21:41:58 +08:00
|
|
|
|
fn abs_diff_eq(&self, other: &Self, epsilon: Self::Epsilon) -> bool {
|
|
|
|
|
self.translation.abs_diff_eq(&other.translation, epsilon)
|
|
|
|
|
&& self.rotation.abs_diff_eq(&other.rotation, epsilon)
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
2018-05-19 21:41:58 +08:00
|
|
|
|
}
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
2018-05-19 21:41:58 +08:00
|
|
|
|
impl<N: Real, D: DimName, R> RelativeEq for Isometry<N, D, R>
|
|
|
|
|
where
|
|
|
|
|
R: Rotation<Point<N, D>> + RelativeEq<Epsilon = N::Epsilon>,
|
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
|
N::Epsilon: Copy,
|
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
#[inline]
|
2018-05-19 21:41:58 +08:00
|
|
|
|
fn default_max_relative() -> Self::Epsilon {
|
|
|
|
|
N::default_max_relative()
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
2018-02-02 19:26:35 +08:00
|
|
|
|
fn relative_eq(
|
|
|
|
|
&self,
|
|
|
|
|
other: &Self,
|
|
|
|
|
epsilon: Self::Epsilon,
|
|
|
|
|
max_relative: Self::Epsilon,
|
2018-10-22 13:00:10 +08:00
|
|
|
|
) -> bool
|
|
|
|
|
{
|
2018-02-02 19:26:35 +08:00
|
|
|
|
self.translation
|
|
|
|
|
.relative_eq(&other.translation, epsilon, max_relative)
|
2018-07-20 21:25:55 +08:00
|
|
|
|
&& self
|
|
|
|
|
.rotation
|
2018-02-02 19:26:35 +08:00
|
|
|
|
.relative_eq(&other.rotation, epsilon, max_relative)
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
2018-05-19 21:41:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl<N: Real, D: DimName, R> UlpsEq for Isometry<N, D, R>
|
|
|
|
|
where
|
|
|
|
|
R: Rotation<Point<N, D>> + UlpsEq<Epsilon = N::Epsilon>,
|
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
|
N::Epsilon: Copy,
|
|
|
|
|
{
|
|
|
|
|
#[inline]
|
|
|
|
|
fn default_max_ulps() -> u32 {
|
|
|
|
|
N::default_max_ulps()
|
|
|
|
|
}
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
fn ulps_eq(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool {
|
2018-02-02 19:26:35 +08:00
|
|
|
|
self.translation
|
|
|
|
|
.ulps_eq(&other.translation, epsilon, max_ulps)
|
|
|
|
|
&& self.rotation.ulps_eq(&other.rotation, epsilon, max_ulps)
|
2016-12-05 05:44:42 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
*
|
|
|
|
|
* Display
|
|
|
|
|
*
|
|
|
|
|
*/
|
2017-08-03 01:37:44 +08:00
|
|
|
|
impl<N: Real + fmt::Display, D: DimName, R> fmt::Display for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
|
where
|
|
|
|
|
R: fmt::Display,
|
|
|
|
|
DefaultAllocator: Allocator<N, D> + Allocator<usize, D>,
|
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
let precision = f.precision().unwrap_or(3);
|
|
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
|
writeln!(f, "Isometry {{")?;
|
|
|
|
|
write!(f, "{:.*}", precision, self.translation)?;
|
|
|
|
|
write!(f, "{:.*}", precision, self.rotation)?;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
writeln!(f, "}}")
|
|
|
|
|
}
|
|
|
|
|
}
|