2016-12-05 05:44:42 +08:00
|
|
|
#[cfg(feature = "arbitrary")]
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::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
|
|
|
|
2018-02-02 19:26:35 +08:00
|
|
|
use num::{One, Zero};
|
2018-05-23 05:58:14 +08:00
|
|
|
use rand::distributions::{Distribution, Standard};
|
|
|
|
use rand::Rng;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2020-03-21 19:16:46 +08:00
|
|
|
use simba::scalar::ClosedAdd;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::base::allocator::Allocator;
|
|
|
|
use crate::base::dimension::{DimName, U1, U2, U3, U4, U5, U6};
|
|
|
|
use crate::base::{DefaultAllocator, Scalar, VectorN};
|
2017-08-03 01:37:44 +08:00
|
|
|
|
2019-03-23 21:29:07 +08:00
|
|
|
use crate::geometry::Translation;
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2019-12-17 07:09:14 +08:00
|
|
|
impl<N: Scalar + Zero, D: DimName> Translation<N, D>
|
2020-04-06 00:49:48 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2018-10-28 14:33:14 +08:00
|
|
|
/// Creates a new identity translation.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use nalgebra::{Point2, Point3, Translation2, Translation3};
|
|
|
|
/// let t = Translation2::identity();
|
|
|
|
/// let p = Point2::new(1.0, 2.0);
|
|
|
|
/// assert_eq!(t * p, p);
|
|
|
|
///
|
|
|
|
/// // Works in all dimensions.
|
|
|
|
/// let t = Translation3::identity();
|
|
|
|
/// let p = Point3::new(1.0, 2.0, 3.0);
|
|
|
|
/// assert_eq!(t * p, p);
|
|
|
|
/// ```
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2017-08-03 01:37:44 +08:00
|
|
|
pub fn identity() -> Translation<N, D> {
|
2018-10-28 14:33:14 +08:00
|
|
|
Self::from(VectorN::<N, D>::from_element(N::zero()))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-17 07:09:14 +08:00
|
|
|
impl<N: Scalar + Zero + ClosedAdd, D: DimName> One for Translation<N, D>
|
2020-04-06 00:49:48 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn one() -> Self {
|
|
|
|
Self::identity()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-17 07:09:14 +08:00
|
|
|
impl<N: Scalar, D: DimName> Distribution<Translation<N, D>> for Standard
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
2018-05-23 05:58:14 +08:00
|
|
|
Standard: Distribution<N>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
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) -> Translation<N, D> {
|
2018-10-28 14:33:14 +08:00
|
|
|
Translation::from(rng.gen::<VectorN<N, D>>())
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "arbitrary")]
|
2019-12-17 07:09:14 +08:00
|
|
|
impl<N: Scalar + Arbitrary, D: DimName> Arbitrary for Translation<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
|
|
|
DefaultAllocator: Allocator<N, D>,
|
|
|
|
Owned<N, D>: Send,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
fn arbitrary<G: Gen>(rng: &mut G) -> Self {
|
2018-11-01 17:20:19 +08:00
|
|
|
let v: VectorN<N, D> = Arbitrary::arbitrary(rng);
|
|
|
|
Self::from(v)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Small translation construction from components.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
macro_rules! componentwise_constructors_impl(
|
2018-10-28 14:33:14 +08:00
|
|
|
($($doc: expr; $D: ty, $($args: ident:$irow: expr),*);* $(;)*) => {$(
|
2019-12-17 07:09:14 +08:00
|
|
|
impl<N: Scalar> Translation<N, $D>
|
2017-08-03 01:37:44 +08:00
|
|
|
where DefaultAllocator: Allocator<N, $D> {
|
2018-10-28 14:33:14 +08:00
|
|
|
#[doc = "Initializes this translation from its components."]
|
|
|
|
#[doc = "# Example\n```"]
|
|
|
|
#[doc = $doc]
|
|
|
|
#[doc = "```"]
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
|
|
|
pub fn new($($args: N),*) -> Self {
|
2018-10-28 14:33:14 +08:00
|
|
|
Self::from(VectorN::<N, $D>::new($($args),*))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
)*}
|
|
|
|
);
|
|
|
|
|
|
|
|
componentwise_constructors_impl!(
|
2018-10-28 14:33:14 +08:00
|
|
|
"# use nalgebra::Translation1;\nlet t = Translation1::new(1.0);\nassert!(t.vector.x == 1.0);";
|
2016-12-05 05:44:42 +08:00
|
|
|
U1, x:0;
|
2018-10-28 14:33:14 +08:00
|
|
|
"# use nalgebra::Translation2;\nlet t = Translation2::new(1.0, 2.0);\nassert!(t.vector.x == 1.0 && t.vector.y == 2.0);";
|
2016-12-05 05:44:42 +08:00
|
|
|
U2, x:0, y:1;
|
2018-10-28 14:33:14 +08:00
|
|
|
"# use nalgebra::Translation3;\nlet t = Translation3::new(1.0, 2.0, 3.0);\nassert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0);";
|
2016-12-05 05:44:42 +08:00
|
|
|
U3, x:0, y:1, z:2;
|
2018-10-28 14:33:14 +08:00
|
|
|
"# use nalgebra::Translation4;\nlet t = Translation4::new(1.0, 2.0, 3.0, 4.0);\nassert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0 && t.vector.w == 4.0);";
|
2016-12-05 05:44:42 +08:00
|
|
|
U4, x:0, y:1, z:2, w:3;
|
2018-10-28 14:33:14 +08:00
|
|
|
"# use nalgebra::Translation5;\nlet t = Translation5::new(1.0, 2.0, 3.0, 4.0, 5.0);\nassert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0 && t.vector.w == 4.0 && t.vector.a == 5.0);";
|
2016-12-05 05:44:42 +08:00
|
|
|
U5, x:0, y:1, z:2, w:3, a:4;
|
2018-10-28 14:33:14 +08:00
|
|
|
"# use nalgebra::Translation6;\nlet t = Translation6::new(1.0, 2.0, 3.0, 4.0, 5.0, 6.0);\nassert!(t.vector.x == 1.0 && t.vector.y == 2.0 && t.vector.z == 3.0 && t.vector.w == 4.0 && t.vector.a == 5.0 && t.vector.b == 6.0);";
|
2016-12-05 05:44:42 +08:00
|
|
|
U6, x:0, y:1, z:2, w:3, a:4, b:5;
|
|
|
|
);
|