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};
|
2021-03-02 19:25:12 +08:00
|
|
|
#[cfg(feature = "rand-no-std")]
|
|
|
|
use rand::{
|
|
|
|
distributions::{Distribution, Standard},
|
|
|
|
Rng,
|
|
|
|
};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2021-03-06 00:08:46 +08:00
|
|
|
use simba::scalar::{ClosedAdd, SupersetOf};
|
2016-12-05 05:44:42 +08:00
|
|
|
|
2021-04-07 20:29:20 +08:00
|
|
|
use crate::base::{CVectorN, Scalar};
|
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
|
|
|
|
2021-04-07 20:29:20 +08:00
|
|
|
impl<N: Scalar, const D: usize> Translation<N, D>
|
|
|
|
// 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]
|
2021-03-06 00:08:46 +08:00
|
|
|
pub fn identity() -> Translation<N, D>
|
|
|
|
where
|
|
|
|
N: Zero,
|
|
|
|
{
|
2021-04-07 20:29:20 +08:00
|
|
|
Self::from(CVectorN::<N, D>::from_element(N::zero()))
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
2021-03-06 00:08:46 +08:00
|
|
|
|
|
|
|
/// Cast the components of `self` to another type.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
/// ```
|
|
|
|
/// # use nalgebra::Translation2;
|
|
|
|
/// let tra = Translation2::new(1.0f64, 2.0);
|
|
|
|
/// let tra2 = tra.cast::<f32>();
|
|
|
|
/// assert_eq!(tra2, Translation2::new(1.0f32, 2.0));
|
|
|
|
/// ```
|
|
|
|
pub fn cast<To: Scalar>(self) -> Translation<To, D>
|
|
|
|
where
|
|
|
|
Translation<To, D>: SupersetOf<Self>,
|
2021-04-07 20:29:20 +08:00
|
|
|
// DefaultAllocator: Allocator<To, D>,
|
2021-03-06 00:08:46 +08:00
|
|
|
{
|
|
|
|
crate::convert(self)
|
|
|
|
}
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
|
2021-04-07 20:29:20 +08:00
|
|
|
impl<N: Scalar + Zero + ClosedAdd, const D: usize> One for Translation<N, D>
|
|
|
|
// 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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-02 19:25:12 +08:00
|
|
|
#[cfg(feature = "rand-no-std")]
|
2021-04-07 20:29:20 +08:00
|
|
|
impl<N: Scalar, const D: usize> Distribution<Translation<N, D>> for Standard
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
2021-04-07 20:29:20 +08:00
|
|
|
// DefaultAllocator: Allocator<N, D>,
|
2018-05-23 05:58:14 +08:00
|
|
|
Standard: Distribution<N>,
|
2018-02-02 19:26:35 +08:00
|
|
|
{
|
2021-04-10 14:20:30 +08:00
|
|
|
/// Generate an arbitrary random variate for testing purposes.
|
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> {
|
2021-04-07 20:29:20 +08:00
|
|
|
Translation::from(rng.gen::<CVectorN<N, D>>())
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "arbitrary")]
|
2021-04-07 20:29:20 +08:00
|
|
|
impl<N: Scalar + Arbitrary + Send, const D: usize> Arbitrary for Translation<N, D>
|
2018-02-02 19:26:35 +08:00
|
|
|
where
|
2021-04-07 20:29:20 +08:00
|
|
|
// DefaultAllocator: Allocator<N, D>,
|
2018-02-02 19:26:35 +08:00
|
|
|
Owned<N, D>: Send,
|
|
|
|
{
|
2016-12-05 05:44:42 +08:00
|
|
|
#[inline]
|
2021-03-01 00:52:14 +08:00
|
|
|
fn arbitrary(rng: &mut Gen) -> Self {
|
2021-04-07 20:29:20 +08:00
|
|
|
let v: CVectorN<N, D> = Arbitrary::arbitrary(rng);
|
2018-11-01 17:20:19 +08:00
|
|
|
Self::from(v)
|
2016-12-05 05:44:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* Small translation construction from components.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
macro_rules! componentwise_constructors_impl(
|
2021-04-07 20:29:20 +08:00
|
|
|
($($doc: expr; $D: expr, $($args: ident:$irow: expr),*);* $(;)*) => {$(
|
2019-12-17 07:09:14 +08:00
|
|
|
impl<N: Scalar> Translation<N, $D>
|
2021-04-07 20:29:20 +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 {
|
2021-04-07 20:29:20 +08:00
|
|
|
Self::from(CVectorN::<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);";
|
2021-04-07 20:29:20 +08:00
|
|
|
1, 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);";
|
2021-04-07 20:29:20 +08:00
|
|
|
2, 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);";
|
2021-04-07 20:29:20 +08:00
|
|
|
3, 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);";
|
2021-04-07 20:29:20 +08:00
|
|
|
4, 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);";
|
2021-04-07 20:29:20 +08:00
|
|
|
5, 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);";
|
2021-04-07 20:29:20 +08:00
|
|
|
6, x:0, y:1, z:2, w:3, a:4, b:5;
|
2016-12-05 05:44:42 +08:00
|
|
|
);
|