2016-12-05 05:44:42 +08:00
|
|
|
#[cfg(feature = "arbitrary")]
|
2018-05-19 23:15:15 +08:00
|
|
|
use base::storage::Owned;
|
2018-05-23 05:58:14 +08:00
|
|
|
#[cfg(feature = "arbitrary")]
|
|
|
|
use quickcheck::{Arbitrary, Gen};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
use num::One;
|
2018-05-23 05:58:14 +08:00
|
|
|
use rand::distributions::{Distribution, Standard};
|
|
|
|
use rand::Rng;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
|
|
|
use alga::general::Real;
|
|
|
|
use alga::linear::Rotation as AlgaRotation;
|
|
|
|
|
2018-05-19 23:15:15 +08:00
|
|
|
use base::allocator::Allocator;
|
2018-05-23 05:58:14 +08:00
|
|
|
use base::dimension::{DimName, U2, U3};
|
|
|
|
use base::{DefaultAllocator, Vector2, Vector3};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2018-05-23 05:58:14 +08:00
|
|
|
use geometry::{
|
|
|
|
Isometry, Point, Point3, Rotation, Rotation2, Rotation3, Translation, UnitComplex,
|
|
|
|
UnitQuaternion,
|
|
|
|
};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Real, D: DimName, R: AlgaRotation<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 identity isometry.
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
2018-11-07 05:43:03 +08:00
|
|
|
/// # use nalgebra::{Isometry2, Point2, Isometry3, Point3};
|
|
|
|
///
|
2018-10-22 14:53:52 +08:00
|
|
|
/// let iso = Isometry2::identity();
|
|
|
|
/// let pt = Point2::new(1.0, 2.0);
|
2018-11-07 05:43:03 +08:00
|
|
|
/// assert_eq!(iso * pt, pt);
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
2018-11-07 05:43:03 +08:00
|
|
|
/// let iso = Isometry3::identity();
|
|
|
|
/// let pt = Point3::new(1.0, 2.0, 3.0);
|
2018-10-22 14:53:52 +08:00
|
|
|
/// assert_eq!(iso * pt, pt);
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
pub fn identity() -> Self {
|
2017-08-03 01:37:44 +08:00
|
|
|
Self::from_parts(Translation::identity(), R::identity())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// The isometry that applies the rotation `r` with its axis passing through the point `p`.
|
|
|
|
/// This effectively lets `p` invariant.
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
/// # extern crate nalgebra;
|
|
|
|
/// # use std::f32;
|
|
|
|
/// # use nalgebra::{Isometry2, Point2, UnitComplex};
|
|
|
|
/// let rot = UnitComplex::new(f32::consts::PI);
|
|
|
|
/// let pt = Point2::new(1.0, 0.0);
|
|
|
|
/// let iso = Isometry2::rotation_wrt_point(rot, pt);
|
|
|
|
///
|
|
|
|
/// assert_eq!(iso * pt, pt); // The rotation center is not affected.
|
|
|
|
/// assert_relative_eq!(iso * Point2::new(1.0, 2.0), Point2::new(1.0, -2.0), epsilon = 1.0e-6);
|
|
|
|
/// ```
|
2017-08-03 01:37:44 +08:00
|
|
|
#[inline]
|
|
|
|
pub fn rotation_wrt_point(r: R, p: Point<N, D>) -> Self {
|
|
|
|
let shift = r.transform_vector(&-&p.coords);
|
2018-10-28 14:33:39 +08:00
|
|
|
Self::from_parts(Translation::from(shift + p.coords), r)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Real, D: DimName, R: AlgaRotation<Point<N, D>>> One 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
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
/// Creates a new identity isometry.
|
|
|
|
#[inline]
|
|
|
|
fn one() -> Self {
|
|
|
|
Self::identity()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 05:58:14 +08:00
|
|
|
impl<N: Real, D: DimName, R> Distribution<Isometry<N, D, R>> for Standard
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
2018-05-23 05:58:14 +08:00
|
|
|
R: AlgaRotation<Point<N, D>>,
|
|
|
|
Standard: Distribution<N> + Distribution<R>,
|
2018-02-02 19:26:35 +08:00
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2018-05-23 05:58:14 +08:00
|
|
|
fn sample<'a, G: Rng + ?Sized>(&self, rng: &'a mut G) -> Isometry<N, D, R> {
|
|
|
|
Isometry::from_parts(rng.gen(), rng.gen())
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "arbitrary")]
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N, D: DimName, R> Arbitrary for Isometry<N, D, R>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
N: Real + Arbitrary + Send,
|
|
|
|
R: AlgaRotation<Point<N, D>> + Arbitrary + Send,
|
|
|
|
Owned<N, D>: Send,
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn arbitrary<G: Gen>(rng: &mut G) -> Self {
|
|
|
|
Self::from_parts(Arbitrary::arbitrary(rng), Arbitrary::arbitrary(rng))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Constructors for various static dimensions.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// 2D rotation.
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Real> Isometry<N, U2, Rotation2<N>> {
|
2018-10-22 14:53:52 +08:00
|
|
|
/// Creates a new 2D isometry from a translation and a rotation angle.
|
|
|
|
///
|
|
|
|
/// Its rotational part is represented as a 2x2 rotation matrix.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # use std::f32;
|
|
|
|
/// # use nalgebra::{Isometry2, Vector2, Point2};
|
|
|
|
/// let iso = Isometry2::new(Vector2::new(1.0, 2.0), f32::consts::FRAC_PI_2);
|
|
|
|
///
|
|
|
|
/// assert_eq!(iso * Point2::new(3.0, 4.0), Point2::new(-3.0, 5.0));
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn new(translation: Vector2<N>, angle: N) -> Self {
|
2018-02-02 19:26:35 +08:00
|
|
|
Self::from_parts(
|
2018-10-28 14:33:39 +08:00
|
|
|
Translation::from(translation),
|
2018-02-02 19:26:35 +08:00
|
|
|
Rotation::<N, U2>::new(angle),
|
|
|
|
)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Real> Isometry<N, U2, UnitComplex<N>> {
|
2018-10-22 14:53:52 +08:00
|
|
|
/// Creates a new 2D isometry from a translation and a rotation angle.
|
|
|
|
///
|
|
|
|
/// Its rotational part is represented as an unit complex number.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # use std::f32;
|
|
|
|
/// # use nalgebra::{IsometryMatrix2, Point2, Vector2};
|
|
|
|
/// let iso = IsometryMatrix2::new(Vector2::new(1.0, 2.0), f32::consts::FRAC_PI_2);
|
|
|
|
///
|
|
|
|
/// assert_eq!(iso * Point2::new(3.0, 4.0), Point2::new(-3.0, 5.0));
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn new(translation: Vector2<N>, angle: N) -> Self {
|
2018-02-02 19:26:35 +08:00
|
|
|
Self::from_parts(
|
2018-10-28 14:33:39 +08:00
|
|
|
Translation::from(translation),
|
2018-02-02 19:26:35 +08:00
|
|
|
UnitComplex::from_angle(angle),
|
|
|
|
)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 3D rotation.
|
|
|
|
macro_rules! isometry_construction_impl(
|
|
|
|
($RotId: ident < $($RotParams: ident),*>, $RRDim: ty, $RCDim: ty) => {
|
2017-08-03 01:37:44 +08:00
|
|
|
impl<N: Real> Isometry<N, U3, $RotId<$($RotParams),*>> {
|
2016-12-05 05:44:42 +08:00
|
|
|
/// Creates a new isometry from a translation and a rotation axis-angle.
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
/// # extern crate nalgebra;
|
|
|
|
/// # use std::f32;
|
|
|
|
/// # use nalgebra::{Isometry3, IsometryMatrix3, Point3, Vector3};
|
|
|
|
/// let axisangle = Vector3::y() * f32::consts::FRAC_PI_2;
|
|
|
|
/// let translation = Vector3::new(1.0, 2.0, 3.0);
|
2018-10-24 02:47:42 +08:00
|
|
|
/// // Point and vector being transformed in the tests.
|
|
|
|
/// let pt = Point3::new(4.0, 5.0, 6.0);
|
|
|
|
/// let vec = Vector3::new(4.0, 5.0, 6.0);
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as a UnitQuaternion
|
|
|
|
/// let iso = Isometry3::new(translation, axisangle);
|
2018-10-24 02:47:42 +08:00
|
|
|
/// assert_relative_eq!(iso * pt, Point3::new(7.0, 7.0, -1.0), epsilon = 1.0e-6);
|
|
|
|
/// assert_relative_eq!(iso * vec, Vector3::new(6.0, 5.0, -4.0), epsilon = 1.0e-6);
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as a Rotation3 (a 3x3 rotation matrix).
|
|
|
|
/// let iso = IsometryMatrix3::new(translation, axisangle);
|
2018-10-24 02:47:42 +08:00
|
|
|
/// assert_relative_eq!(iso * pt, Point3::new(7.0, 7.0, -1.0), epsilon = 1.0e-6);
|
|
|
|
/// assert_relative_eq!(iso * vec, Vector3::new(6.0, 5.0, -4.0), epsilon = 1.0e-6);
|
2018-10-22 14:53:52 +08:00
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn new(translation: Vector3<N>, axisangle: Vector3<N>) -> Self {
|
2016-12-05 05:44:42 +08:00
|
|
|
Self::from_parts(
|
2018-10-28 14:33:39 +08:00
|
|
|
Translation::from(translation),
|
2016-12-05 05:44:42 +08:00
|
|
|
$RotId::<$($RotParams),*>::from_scaled_axis(axisangle))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates an isometry that corresponds to the local frame of an observer standing at the
|
|
|
|
/// point `eye` and looking toward `target`.
|
|
|
|
///
|
2018-11-01 16:56:57 +08:00
|
|
|
/// It maps the `z` axis to the view direction `target - eye`and the origin to the `eye`.
|
2016-12-05 05:44:42 +08:00
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
/// * eye - The observer position.
|
|
|
|
/// * target - The target position.
|
|
|
|
/// * up - Vertical direction. The only requirement of this parameter is to not be collinear
|
|
|
|
/// to `eye - at`. Non-collinearity is not checked.
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
/// # extern crate nalgebra;
|
|
|
|
/// # use std::f32;
|
|
|
|
/// # use nalgebra::{Isometry3, IsometryMatrix3, Point3, Vector3};
|
|
|
|
/// let eye = Point3::new(1.0, 2.0, 3.0);
|
|
|
|
/// let target = Point3::new(2.0, 2.0, 3.0);
|
|
|
|
/// let up = Vector3::y();
|
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as a UnitQuaternion
|
2019-01-17 05:41:25 +08:00
|
|
|
/// let iso = Isometry3::face_towards(&eye, &target, &up);
|
2018-10-22 14:53:52 +08:00
|
|
|
/// assert_eq!(iso * Point3::origin(), eye);
|
|
|
|
/// assert_relative_eq!(iso * Vector3::z(), Vector3::x());
|
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as Rotation3 (a 3x3 rotation matrix).
|
2019-01-17 05:41:25 +08:00
|
|
|
/// let iso = IsometryMatrix3::face_towards(&eye, &target, &up);
|
2018-10-22 14:53:52 +08:00
|
|
|
/// assert_eq!(iso * Point3::origin(), eye);
|
|
|
|
/// assert_relative_eq!(iso * Vector3::z(), Vector3::x());
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2019-01-17 05:41:25 +08:00
|
|
|
pub fn face_towards(eye: &Point3<N>,
|
2017-08-03 01:37:44 +08:00
|
|
|
target: &Point3<N>,
|
|
|
|
up: &Vector3<N>)
|
2016-12-05 05:44:42 +08:00
|
|
|
-> Self {
|
|
|
|
Self::from_parts(
|
2018-10-28 14:33:39 +08:00
|
|
|
Translation::from(eye.coords.clone()),
|
2019-01-17 05:41:25 +08:00
|
|
|
$RotId::face_towards(&(target - eye), up))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Builds a right-handed look-at view matrix.
|
|
|
|
///
|
2018-10-22 14:53:52 +08:00
|
|
|
/// It maps the view direction `target - eye` to the **negative** `z` axis to and the `eye` to the origin.
|
|
|
|
/// This conforms to the common notion of right handed camera look-at **view matrix** from
|
|
|
|
/// the computer graphics community, i.e. the camera is assumed to look toward its local `-z` axis.
|
2016-12-05 05:44:42 +08:00
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
/// * eye - The eye position.
|
|
|
|
/// * target - The target position.
|
|
|
|
/// * up - A vector approximately aligned with required the vertical axis. The only
|
|
|
|
/// requirement of this parameter is to not be collinear to `target - eye`.
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
/// # extern crate nalgebra;
|
|
|
|
/// # use std::f32;
|
|
|
|
/// # use nalgebra::{Isometry3, IsometryMatrix3, Point3, Vector3};
|
|
|
|
/// let eye = Point3::new(1.0, 2.0, 3.0);
|
|
|
|
/// let target = Point3::new(2.0, 2.0, 3.0);
|
|
|
|
/// let up = Vector3::y();
|
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as a UnitQuaternion
|
|
|
|
/// let iso = Isometry3::look_at_rh(&eye, &target, &up);
|
|
|
|
/// assert_eq!(iso * eye, Point3::origin());
|
|
|
|
/// assert_relative_eq!(iso * Vector3::x(), -Vector3::z());
|
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as Rotation3 (a 3x3 rotation matrix).
|
|
|
|
/// let iso = IsometryMatrix3::look_at_rh(&eye, &target, &up);
|
|
|
|
/// assert_eq!(iso * eye, Point3::origin());
|
|
|
|
/// assert_relative_eq!(iso * Vector3::x(), -Vector3::z());
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn look_at_rh(eye: &Point3<N>,
|
|
|
|
target: &Point3<N>,
|
|
|
|
up: &Vector3<N>)
|
2016-12-05 05:44:42 +08:00
|
|
|
-> Self {
|
|
|
|
let rotation = $RotId::look_at_rh(&(target - eye), up);
|
|
|
|
let trans = &rotation * (-eye);
|
|
|
|
|
2018-10-28 14:33:39 +08:00
|
|
|
Self::from_parts(Translation::from(trans.coords), rotation)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Builds a left-handed look-at view matrix.
|
|
|
|
///
|
2018-10-22 14:53:52 +08:00
|
|
|
/// It maps the view direction `target - eye` to the **positive** `z` axis and the `eye` to the origin.
|
|
|
|
/// This conforms to the common notion of right handed camera look-at **view matrix** from
|
|
|
|
/// the computer graphics community, i.e. the camera is assumed to look toward its local `z` axis.
|
2016-12-05 05:44:42 +08:00
|
|
|
///
|
|
|
|
/// # Arguments
|
|
|
|
/// * eye - The eye position.
|
|
|
|
/// * target - The target position.
|
|
|
|
/// * up - A vector approximately aligned with required the vertical axis. The only
|
|
|
|
/// requirement of this parameter is to not be collinear to `target - eye`.
|
2018-10-22 14:53:52 +08:00
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```
|
|
|
|
/// # #[macro_use] extern crate approx;
|
|
|
|
/// # extern crate nalgebra;
|
|
|
|
/// # use std::f32;
|
|
|
|
/// # use nalgebra::{Isometry3, IsometryMatrix3, Point3, Vector3};
|
|
|
|
/// let eye = Point3::new(1.0, 2.0, 3.0);
|
|
|
|
/// let target = Point3::new(2.0, 2.0, 3.0);
|
|
|
|
/// let up = Vector3::y();
|
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as a UnitQuaternion
|
|
|
|
/// let iso = Isometry3::look_at_lh(&eye, &target, &up);
|
|
|
|
/// assert_eq!(iso * eye, Point3::origin());
|
|
|
|
/// assert_relative_eq!(iso * Vector3::x(), Vector3::z());
|
|
|
|
///
|
|
|
|
/// // Isometry with its rotation part represented as Rotation3 (a 3x3 rotation matrix).
|
|
|
|
/// let iso = IsometryMatrix3::look_at_lh(&eye, &target, &up);
|
|
|
|
/// assert_eq!(iso * eye, Point3::origin());
|
|
|
|
/// assert_relative_eq!(iso * Vector3::x(), Vector3::z());
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn look_at_lh(eye: &Point3<N>,
|
|
|
|
target: &Point3<N>,
|
|
|
|
up: &Vector3<N>)
|
2016-12-05 05:44:42 +08:00
|
|
|
-> Self {
|
|
|
|
let rotation = $RotId::look_at_lh(&(target - eye), up);
|
|
|
|
let trans = &rotation * (-eye);
|
|
|
|
|
2018-10-28 14:33:39 +08:00
|
|
|
Self::from_parts(Translation::from(trans.coords), rotation)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2017-08-03 01:37:44 +08:00
|
|
|
isometry_construction_impl!(Rotation3<N>, U3, U3);
|
|
|
|
isometry_construction_impl!(UnitQuaternion<N>, U4, U1);
|