2014-05-26 17:10:04 +00:00
|
|
|
// Copyright 2013-2014 The CGMath Developers. For a full listing of the authors,
|
2015-03-14 02:49:46 +00:00
|
|
|
// refer to the Cargo.toml file at the top-level directory of this distribution.
|
2013-07-11 23:18:05 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2014-05-28 01:59:03 +00:00
|
|
|
use std::mem;
|
2015-01-03 21:29:26 +00:00
|
|
|
use std::ops::*;
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2015-03-15 02:53:57 +00:00
|
|
|
use rand::{Rand, Rng};
|
2016-04-23 04:03:35 +00:00
|
|
|
use num_traits::cast;
|
2015-03-15 02:53:57 +00:00
|
|
|
|
2016-04-19 10:51:40 +00:00
|
|
|
use structure::*;
|
|
|
|
|
|
|
|
use angle::Rad;
|
2014-05-28 01:59:03 +00:00
|
|
|
use approx::ApproxEq;
|
2016-04-17 04:33:06 +00:00
|
|
|
use euler::Euler;
|
2015-05-06 08:27:52 +00:00
|
|
|
use matrix::{Matrix3, Matrix4};
|
2015-04-05 01:19:11 +00:00
|
|
|
use num::BaseFloat;
|
2014-05-28 01:59:03 +00:00
|
|
|
use point::Point3;
|
2015-05-06 08:35:09 +00:00
|
|
|
use rotation::{Rotation, Rotation3, Basis3};
|
2016-04-19 10:51:40 +00:00
|
|
|
use vector::Vector3;
|
2013-07-11 23:18:05 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
use simd::f32x4 as Simdf32x4;
|
2015-03-15 02:53:57 +00:00
|
|
|
|
2014-05-25 08:29:19 +00:00
|
|
|
/// A [quaternion](https://en.wikipedia.org/wiki/Quaternion) in scalar/vector
|
|
|
|
/// form.
|
2016-03-25 01:34:12 +00:00
|
|
|
///
|
2016-08-25 13:41:39 +00:00
|
|
|
/// This type is marked as `#[repr(C)]`.
|
|
|
|
#[repr(C)]
|
2016-05-15 12:48:57 +00:00
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
#[cfg_attr(feature = "rustc-serialize", derive(RustcEncodable, RustcDecodable))]
|
2016-05-16 12:16:59 +00:00
|
|
|
#[cfg_attr(feature = "eders", derive(Serialize, Deserialize))]
|
2015-09-20 15:32:53 +00:00
|
|
|
pub struct Quaternion<S> {
|
2016-04-09 03:47:17 +00:00
|
|
|
/// The scalar part of the quaternion.
|
2015-09-20 15:32:53 +00:00
|
|
|
pub s: S,
|
2016-04-09 03:47:17 +00:00
|
|
|
/// The vector part of the quaternion.
|
2015-09-20 15:32:53 +00:00
|
|
|
pub v: Vector3<S>,
|
|
|
|
}
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl From<Simdf32x4> for Quaternion<f32> {
|
|
|
|
#[inline]
|
|
|
|
fn from(f: Simdf32x4) -> Self {
|
|
|
|
unsafe {
|
|
|
|
let mut ret: Self = mem::uninitialized();
|
|
|
|
{
|
|
|
|
let ret_mut: &mut [f32; 4] = ret.as_mut();
|
|
|
|
f.store(ret_mut.as_mut(), 0 as usize);
|
|
|
|
}
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl Into<Simdf32x4> for Quaternion<f32> {
|
|
|
|
#[inline]
|
|
|
|
fn into(self) -> Simdf32x4 {
|
|
|
|
let self_ref: &[f32; 4] = self.as_ref();
|
|
|
|
Simdf32x4::load(self_ref.as_ref(), 0 as usize)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-26 17:10:04 +00:00
|
|
|
impl<S: BaseFloat> Quaternion<S> {
|
2013-08-26 05:08:25 +00:00
|
|
|
/// Construct a new quaternion from one scalar component and three
|
2017-03-20 23:06:06 +00:00
|
|
|
/// imaginary components.
|
2013-08-26 05:08:25 +00:00
|
|
|
#[inline]
|
2014-04-14 01:30:24 +00:00
|
|
|
pub fn new(w: S, xi: S, yj: S, zk: S) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(w, Vector3::new(xi, yj, zk))
|
2013-08-26 05:08:25 +00:00
|
|
|
}
|
2013-07-12 01:22:14 +00:00
|
|
|
|
2017-03-20 23:06:06 +00:00
|
|
|
/// Construct a new quaternion from a scalar and a vector.
|
2013-07-11 23:18:05 +00:00
|
|
|
#[inline]
|
2014-04-14 01:30:24 +00:00
|
|
|
pub fn from_sv(s: S, v: Vector3<S>) -> Quaternion<S> {
|
|
|
|
Quaternion { s: s, v: v }
|
2013-07-11 23:18:05 +00:00
|
|
|
}
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2016-07-03 03:56:01 +00:00
|
|
|
/// Construct a new quaternion as a closest arc between two vectors
|
|
|
|
///
|
|
|
|
/// Return the closest rotation that turns `src` vector into `dst`.
|
|
|
|
///
|
|
|
|
/// - [Related StackOverflow question]
|
|
|
|
/// (http://stackoverflow.com/questions/1171849/finding-quaternion-representing-the-rotation-from-one-vector-to-another)
|
|
|
|
/// - [Ogre implementation for normalized vectors]
|
|
|
|
/// (https://bitbucket.org/sinbad/ogre/src/9db75e3ba05c/OgreMain/include/OgreVector3.h?fileviewer=file-view-default#cl-651)
|
|
|
|
pub fn from_arc(src: Vector3<S>, dst: Vector3<S>, fallback: Option<Vector3<S>>)
|
|
|
|
-> Quaternion<S> {
|
|
|
|
let mag_avg = (src.magnitude2() * dst.magnitude2()).sqrt();
|
|
|
|
let dot = src.dot(dst);
|
2016-08-22 15:21:22 +00:00
|
|
|
if ulps_eq!(dot, &mag_avg) {
|
2017-03-12 12:44:58 +00:00
|
|
|
Quaternion::<S>::one()
|
2016-08-22 15:21:22 +00:00
|
|
|
} else if ulps_eq!(dot, &-mag_avg) {
|
2016-07-03 03:56:01 +00:00
|
|
|
let axis = fallback.unwrap_or_else(|| {
|
|
|
|
let mut v = Vector3::unit_x().cross(src);
|
2016-08-22 15:21:22 +00:00
|
|
|
if ulps_eq!(v, &Zero::zero()) {
|
2016-07-03 03:56:01 +00:00
|
|
|
v = Vector3::unit_y().cross(src);
|
|
|
|
}
|
|
|
|
v.normalize()
|
|
|
|
});
|
2016-07-05 12:36:47 +00:00
|
|
|
Quaternion::from_axis_angle(axis, Rad::turn_div_2())
|
|
|
|
} else {
|
2016-07-03 03:56:01 +00:00
|
|
|
Quaternion::from_sv(mag_avg + dot, src.cross(dst)).normalize()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-25 08:29:19 +00:00
|
|
|
/// The conjugate of the quaternion.
|
2013-09-03 07:28:43 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
pub fn conjugate(self) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(self.s, -self.v)
|
2013-09-03 07:28:43 +00:00
|
|
|
}
|
|
|
|
|
2016-04-09 03:47:04 +00:00
|
|
|
/// Do a normalized linear interpolation with `other`, by `amount`.
|
|
|
|
pub fn nlerp(self, other: Quaternion<S>, amount: S) -> Quaternion<S> {
|
|
|
|
(self * (S::one() - amount) + other * amount).normalize()
|
2013-09-03 07:28:43 +00:00
|
|
|
}
|
2016-04-16 04:32:28 +00:00
|
|
|
|
|
|
|
/// Spherical Linear Intoperlation
|
|
|
|
///
|
|
|
|
/// Return the spherical linear interpolation between the quaternion and
|
|
|
|
/// `other`. Both quaternions should be normalized first.
|
|
|
|
///
|
|
|
|
/// # Performance notes
|
|
|
|
///
|
|
|
|
/// The `acos` operation used in `slerp` is an expensive operation, so
|
|
|
|
/// unless your quarternions are far away from each other it's generally
|
|
|
|
/// more advisable to use `nlerp` when you know your rotations are going
|
|
|
|
/// to be small.
|
|
|
|
///
|
|
|
|
/// - [Understanding Slerp, Then Not Using It]
|
|
|
|
/// (http://number-none.com/product/Understanding%20Slerp,%20Then%20Not%20Using%20It/)
|
|
|
|
/// - [Arcsynthesis OpenGL tutorial]
|
|
|
|
/// (http://www.arcsynthesis.org/gltut/Positioning/Tut08%20Interpolation.html)
|
|
|
|
pub fn slerp(self, other: Quaternion<S>, amount: S) -> Quaternion<S> {
|
|
|
|
let dot = self.dot(other);
|
|
|
|
let dot_threshold = cast(0.9995f64).unwrap();
|
|
|
|
|
|
|
|
// if quaternions are close together use `nlerp`
|
|
|
|
if dot > dot_threshold {
|
|
|
|
self.nlerp(other, amount)
|
|
|
|
} else {
|
|
|
|
// stay within the domain of acos()
|
|
|
|
// TODO REMOVE WHEN https://github.com/mozilla/rust/issues/12068 IS RESOLVED
|
|
|
|
let robust_dot = if dot > S::one() {
|
|
|
|
S::one()
|
|
|
|
} else if dot < -S::one() {
|
|
|
|
-S::one()
|
|
|
|
} else {
|
|
|
|
dot
|
|
|
|
};
|
|
|
|
|
|
|
|
let theta = Rad::acos(robust_dot.clone());
|
|
|
|
|
|
|
|
let scale1 = Rad::sin(theta * (S::one() - amount));
|
|
|
|
let scale2 = Rad::sin(theta * amount);
|
|
|
|
|
|
|
|
(self * scale1 + other * scale2) * Rad::sin(theta).recip()
|
|
|
|
}
|
|
|
|
}
|
2016-04-09 03:47:04 +00:00
|
|
|
}
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2016-04-25 05:10:53 +00:00
|
|
|
impl<S: BaseFloat> Zero for Quaternion<S> {
|
2013-09-03 07:28:43 +00:00
|
|
|
#[inline]
|
2016-04-09 03:47:04 +00:00
|
|
|
fn zero() -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(S::zero(), Vector3::zero())
|
2013-09-03 07:28:43 +00:00
|
|
|
}
|
2016-04-25 05:10:53 +00:00
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn is_zero(&self) -> bool {
|
2017-03-12 12:44:58 +00:00
|
|
|
ulps_eq!(self, &Quaternion::<S>::zero())
|
2016-04-25 05:10:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-11 22:31:45 +00:00
|
|
|
impl<S: BaseFloat> One for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn one() -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(S::one(), Vector3::zero())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-25 05:10:53 +00:00
|
|
|
impl<S: BaseFloat> VectorSpace for Quaternion<S> {
|
|
|
|
type Scalar = S;
|
2016-04-09 03:47:04 +00:00
|
|
|
}
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2016-04-23 09:52:37 +00:00
|
|
|
impl<S: BaseFloat> MetricSpace for Quaternion<S> {
|
|
|
|
type Metric = S;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn distance2(self, other: Self) -> S {
|
|
|
|
(other - self).magnitude2()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2016-04-09 03:47:04 +00:00
|
|
|
impl<S: BaseFloat> InnerSpace for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn dot(self, other: Quaternion<S>) -> S {
|
|
|
|
self.s * other.s + self.v.dot(other.v)
|
2015-09-30 08:05:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl<S: BaseFloat> InnerSpace for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
default fn dot(self, other: Quaternion<S>) -> S {
|
|
|
|
self.s * other.s + self.v.dot(other.v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl InnerSpace for Quaternion<f32> {
|
|
|
|
#[inline]
|
|
|
|
fn dot(self, other: Quaternion<f32>) -> f32 {
|
|
|
|
let lhs: Simdf32x4 = self.into();
|
|
|
|
let rhs: Simdf32x4 = other.into();
|
|
|
|
let r = lhs * rhs;
|
|
|
|
r.extract(0) + r.extract(1) + r.extract(2) + r.extract(3)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-17 04:33:06 +00:00
|
|
|
impl<A> From<Euler<A>> for Quaternion<<A as Angle>::Unitless> where
|
|
|
|
A: Angle + Into<Rad<<A as Angle>::Unitless>>,
|
|
|
|
{
|
|
|
|
fn from(src: Euler<A>) -> Quaternion<A::Unitless> {
|
2016-05-01 04:31:32 +00:00
|
|
|
// Euclidean Space has an Euler to quat equation, but it is for a different order (YXZ):
|
2016-04-17 04:33:06 +00:00
|
|
|
// http://www.euclideanspace.com/maths/geometry/rotations/conversions/eulerToQuaternion/index.htm
|
2016-05-01 04:31:32 +00:00
|
|
|
// Page A-2 here has the formula for XYZ:
|
|
|
|
// http://ntrs.nasa.gov/archive/nasa/casi.ntrs.nasa.gov/19770024290.pdf
|
2016-04-17 04:33:06 +00:00
|
|
|
|
|
|
|
let half = cast(0.5f64).unwrap();
|
|
|
|
let (s_x, c_x) = Rad::sin_cos(src.x.into() * half);
|
|
|
|
let (s_y, c_y) = Rad::sin_cos(src.y.into() * half);
|
|
|
|
let (s_z, c_z) = Rad::sin_cos(src.z.into() * half);
|
|
|
|
|
2016-05-01 04:31:32 +00:00
|
|
|
Quaternion::new(-s_x * s_y * s_z + c_x * c_y * c_z,
|
|
|
|
s_x * c_y * c_z + s_y * s_z * c_x,
|
|
|
|
-s_x * s_z * c_y + s_y * c_x * c_z,
|
|
|
|
s_x * s_y * c_z + s_z * c_x * c_y)
|
2016-04-17 04:33:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Neg for Quaternion<S> {
|
|
|
|
fn neg(quat) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(-quat.s, -quat.v)
|
|
|
|
}
|
|
|
|
});
|
2015-11-08 06:41:57 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_default!(<S: BaseFloat> Neg for Quaternion<S> {
|
|
|
|
fn neg(quat) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(-quat.s, -quat.v)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_simd!{
|
|
|
|
[Simdf32x4]; Neg for Quaternion<f32> {
|
|
|
|
fn neg(lhs) -> Quaternion<f32> {
|
|
|
|
(-lhs).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Mul<S> for Quaternion<S> {
|
2015-12-12 07:39:31 +00:00
|
|
|
fn mul(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s * rhs, lhs.v * rhs)
|
2015-09-30 08:05:20 +00:00
|
|
|
}
|
2015-12-12 07:39:31 +00:00
|
|
|
});
|
2017-03-12 12:44:58 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_default!(<S: BaseFloat> Mul<S> for Quaternion<S> {
|
|
|
|
fn mul(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s * rhs, lhs.v * rhs)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_simd!{@rs
|
|
|
|
[Simdf32x4]; Mul<f32> for Quaternion<f32> {
|
|
|
|
fn mul(lhs, rhs) -> Quaternion<f32> {
|
|
|
|
(lhs * rhs).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseFloat> MulAssign<S> for Quaternion<S> {
|
|
|
|
fn mul_assign(&mut self, scalar) { self.s *= scalar; self.v *= scalar; }
|
|
|
|
});
|
2015-09-30 08:05:20 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_assignment_operator_default!(<S: BaseFloat> MulAssign<S> for Quaternion<S> {
|
|
|
|
fn mul_assign(&mut self, scalar) { self.s *= scalar; self.v *= scalar; }
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl MulAssign<f32> for Quaternion<f32> {
|
|
|
|
fn mul_assign(&mut self, other: f32) {
|
|
|
|
let s: Simdf32x4 = (*self).into();
|
|
|
|
let other = Simdf32x4::splat(other);
|
|
|
|
*self = (s * other).into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Div<S> for Quaternion<S> {
|
2015-12-12 07:39:31 +00:00
|
|
|
fn div(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s / rhs, lhs.v / rhs)
|
2015-09-30 08:05:20 +00:00
|
|
|
}
|
2015-12-12 07:39:31 +00:00
|
|
|
});
|
2017-03-12 12:44:58 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_default!(<S: BaseFloat> Div<S> for Quaternion<S> {
|
|
|
|
fn div(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s / rhs, lhs.v / rhs)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_simd!{@rs
|
|
|
|
[Simdf32x4]; Div<f32> for Quaternion<f32> {
|
|
|
|
fn div(lhs, rhs) -> Quaternion<f32> {
|
|
|
|
(lhs / rhs).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseFloat> DivAssign<S> for Quaternion<S> {
|
|
|
|
fn div_assign(&mut self, scalar) { self.s /= scalar; self.v /= scalar; }
|
|
|
|
});
|
2015-09-30 08:05:20 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_assignment_operator_default!(<S: BaseFloat> DivAssign<S> for Quaternion<S> {
|
|
|
|
fn div_assign(&mut self, scalar) { self.s /= scalar; self.v /= scalar; }
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl DivAssign<f32> for Quaternion<f32> {
|
|
|
|
fn div_assign(&mut self, other: f32) {
|
|
|
|
let s: Simdf32x4 = (*self).into();
|
|
|
|
let other = Simdf32x4::splat(other);
|
|
|
|
*self = (s / other).into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-09 03:47:04 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Rem<S> for Quaternion<S> {
|
|
|
|
fn rem(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s % rhs, lhs.v % rhs)
|
|
|
|
}
|
|
|
|
});
|
2017-03-12 12:44:58 +00:00
|
|
|
|
2016-04-09 03:47:04 +00:00
|
|
|
impl_assignment_operator!(<S: BaseFloat> RemAssign<S> for Quaternion<S> {
|
|
|
|
fn rem_assign(&mut self, scalar) { self.s %= scalar; self.v %= scalar; }
|
|
|
|
});
|
|
|
|
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Mul<Vector3<S> > for Quaternion<S> {
|
2015-12-12 07:39:31 +00:00
|
|
|
fn mul(lhs, rhs) -> Vector3<S> {{
|
|
|
|
let rhs = rhs.clone();
|
|
|
|
let two: S = cast(2i8).unwrap();
|
|
|
|
let tmp = lhs.v.cross(rhs) + (rhs * lhs.s);
|
|
|
|
(lhs.v.cross(tmp) * two) + rhs
|
|
|
|
}}
|
|
|
|
});
|
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Add<Quaternion<S> > for Quaternion<S> {
|
2015-12-12 07:39:31 +00:00
|
|
|
fn add(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s + rhs.s, lhs.v + rhs.v)
|
|
|
|
}
|
|
|
|
});
|
2017-03-12 12:44:58 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_default!(<S: BaseFloat> Add<Quaternion<S> > for Quaternion<S> {
|
|
|
|
fn add(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s + rhs.s, lhs.v + rhs.v)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_simd!{
|
|
|
|
[Simdf32x4]; Add<Quaternion<f32>> for Quaternion<f32> {
|
|
|
|
fn add(lhs, rhs) -> Quaternion<f32> {
|
|
|
|
(lhs + rhs).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseFloat> AddAssign<Quaternion<S> > for Quaternion<S> {
|
|
|
|
fn add_assign(&mut self, other) { self.s += other.s; self.v += other.v; }
|
|
|
|
});
|
2015-09-30 08:05:20 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_assignment_operator_default!(<S: BaseFloat> AddAssign<Quaternion<S> > for Quaternion<S> {
|
|
|
|
fn add_assign(&mut self, other) { self.s += other.s; self.v += other.v; }
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl AddAssign for Quaternion<f32> {
|
|
|
|
#[inline]
|
|
|
|
fn add_assign(&mut self, rhs: Self) {
|
|
|
|
let s: Simdf32x4 = (*self).into();
|
|
|
|
let rhs: Simdf32x4 = rhs.into();
|
|
|
|
*self = (s + rhs).into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Sub<Quaternion<S> > for Quaternion<S> {
|
2015-12-12 07:39:31 +00:00
|
|
|
fn sub(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s - rhs.s, lhs.v - rhs.v)
|
2013-09-03 07:28:43 +00:00
|
|
|
}
|
2015-12-12 07:39:31 +00:00
|
|
|
});
|
2017-03-12 12:44:58 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_default!(<S: BaseFloat> Sub<Quaternion<S> > for Quaternion<S> {
|
|
|
|
fn sub(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(lhs.s - rhs.s, lhs.v - rhs.v)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_simd!{
|
|
|
|
[Simdf32x4]; Sub<Quaternion<f32>> for Quaternion<f32> {
|
|
|
|
fn sub(lhs, rhs) -> Quaternion<f32> {
|
|
|
|
(lhs - rhs).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-20 20:24:56 +00:00
|
|
|
impl_assignment_operator!(<S: BaseFloat> SubAssign<Quaternion<S> > for Quaternion<S> {
|
|
|
|
fn sub_assign(&mut self, other) { self.s -= other.s; self.v -= other.v; }
|
|
|
|
});
|
2015-12-12 07:39:31 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_assignment_operator_default!(<S: BaseFloat> SubAssign<Quaternion<S> > for Quaternion<S> {
|
|
|
|
fn sub_assign(&mut self, other) { self.s -= other.s; self.v -= other.v; }
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl SubAssign for Quaternion<f32> {
|
|
|
|
#[inline]
|
|
|
|
fn sub_assign(&mut self, rhs: Self) {
|
|
|
|
let s: Simdf32x4 = (*self).into();
|
|
|
|
let rhs: Simdf32x4 = rhs.into();
|
|
|
|
*self = (s - rhs).into();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(feature = "use_simd"))]
|
2015-12-21 13:43:15 +00:00
|
|
|
impl_operator!(<S: BaseFloat> Mul<Quaternion<S> > for Quaternion<S> {
|
2015-12-12 07:39:31 +00:00
|
|
|
fn mul(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::new(lhs.s * rhs.s - lhs.v.x * rhs.v.x - lhs.v.y * rhs.v.y - lhs.v.z * rhs.v.z,
|
|
|
|
lhs.s * rhs.v.x + lhs.v.x * rhs.s + lhs.v.y * rhs.v.z - lhs.v.z * rhs.v.y,
|
|
|
|
lhs.s * rhs.v.y + lhs.v.y * rhs.s + lhs.v.z * rhs.v.x - lhs.v.x * rhs.v.z,
|
|
|
|
lhs.s * rhs.v.z + lhs.v.z * rhs.s + lhs.v.x * rhs.v.y - lhs.v.y * rhs.v.x)
|
|
|
|
}
|
|
|
|
});
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2017-03-12 12:44:58 +00:00
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_default!(<S: BaseFloat> Mul<Quaternion<S> > for Quaternion<S> {
|
|
|
|
fn mul(lhs, rhs) -> Quaternion<S> {
|
|
|
|
Quaternion::new(lhs.s * rhs.s - lhs.v.x * rhs.v.x - lhs.v.y * rhs.v.y - lhs.v.z * rhs.v.z,
|
|
|
|
lhs.s * rhs.v.x + lhs.v.x * rhs.s + lhs.v.y * rhs.v.z - lhs.v.z * rhs.v.y,
|
|
|
|
lhs.s * rhs.v.y + lhs.v.y * rhs.s + lhs.v.z * rhs.v.x - lhs.v.x * rhs.v.z,
|
|
|
|
lhs.s * rhs.v.z + lhs.v.z * rhs.s + lhs.v.x * rhs.v.y - lhs.v.y * rhs.v.x)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
#[cfg(feature = "use_simd")]
|
|
|
|
impl_operator_simd!{
|
|
|
|
[Simdf32x4]; Mul<Quaternion<f32>> for Quaternion<f32> {
|
|
|
|
fn mul(lhs, rhs) -> Quaternion<f32> {
|
|
|
|
{
|
|
|
|
let p0 = Simdf32x4::splat(lhs.extract(0)) * rhs;
|
|
|
|
let p1 = Simdf32x4::splat(lhs.extract(1)) * Simdf32x4::new(
|
|
|
|
-rhs.extract(1), rhs.extract(0), -rhs.extract(3), rhs.extract(2)
|
|
|
|
);
|
|
|
|
let p2 = Simdf32x4::splat(lhs.extract(2)) * Simdf32x4::new(
|
|
|
|
-rhs.extract(2), rhs.extract(3), rhs.extract(0), -rhs.extract(1)
|
|
|
|
);
|
|
|
|
let p3 = Simdf32x4::splat(lhs.extract(3)) * Simdf32x4::new(
|
|
|
|
-rhs.extract(3), -rhs.extract(2), rhs.extract(1), rhs.extract(0)
|
|
|
|
);
|
|
|
|
(p0 + p1 + p2 + p3).into()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-02 00:13:27 +00:00
|
|
|
macro_rules! impl_scalar_mul {
|
|
|
|
($S:ident) => {
|
|
|
|
impl_operator!(Mul<Quaternion<$S>> for $S {
|
|
|
|
fn mul(scalar, quat) -> Quaternion<$S> {
|
|
|
|
Quaternion::from_sv(scalar * quat.s, scalar * quat.v)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_scalar_div {
|
|
|
|
($S:ident) => {
|
|
|
|
impl_operator!(Div<Quaternion<$S>> for $S {
|
|
|
|
fn div(scalar, quat) -> Quaternion<$S> {
|
|
|
|
Quaternion::from_sv(scalar / quat.s, scalar / quat.v)
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_scalar_mul!(f32);
|
|
|
|
impl_scalar_mul!(f64);
|
|
|
|
impl_scalar_div!(f32);
|
|
|
|
impl_scalar_div!(f64);
|
|
|
|
|
2015-11-03 03:00:39 +00:00
|
|
|
impl<S: BaseFloat> ApproxEq for Quaternion<S> {
|
2016-08-22 15:21:22 +00:00
|
|
|
type Epsilon = S::Epsilon;
|
2015-11-03 03:00:39 +00:00
|
|
|
|
2014-05-28 01:59:03 +00:00
|
|
|
#[inline]
|
2016-08-22 15:21:22 +00:00
|
|
|
fn default_epsilon() -> S::Epsilon {
|
|
|
|
S::default_epsilon()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn default_max_relative() -> S::Epsilon {
|
|
|
|
S::default_max_relative()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn default_max_ulps() -> u32 {
|
|
|
|
S::default_max_ulps()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn relative_eq(&self, other: &Self, epsilon: S::Epsilon, max_relative: S::Epsilon) -> bool {
|
|
|
|
S::relative_eq(&self.s, &other.s, epsilon, max_relative) &&
|
|
|
|
Vector3::relative_eq(&self.v, &other.v, epsilon, max_relative)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn ulps_eq(&self, other: &Self, epsilon: S::Epsilon, max_ulps: u32) -> bool {
|
|
|
|
S::ulps_eq(&self.s, &other.s, epsilon, max_ulps) &&
|
|
|
|
Vector3::ulps_eq(&self.v, &other.v, epsilon, max_ulps)
|
2014-05-28 01:59:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-06 08:27:52 +00:00
|
|
|
impl<S: BaseFloat> From<Quaternion<S>> for Matrix3<S> {
|
2017-03-20 23:06:06 +00:00
|
|
|
/// Convert the quaternion to a 3 x 3 rotation matrix.
|
2015-05-06 08:27:52 +00:00
|
|
|
fn from(quat: Quaternion<S>) -> Matrix3<S> {
|
|
|
|
let x2 = quat.v.x + quat.v.x;
|
|
|
|
let y2 = quat.v.y + quat.v.y;
|
|
|
|
let z2 = quat.v.z + quat.v.z;
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2015-05-06 08:27:52 +00:00
|
|
|
let xx2 = x2 * quat.v.x;
|
|
|
|
let xy2 = x2 * quat.v.y;
|
|
|
|
let xz2 = x2 * quat.v.z;
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2015-05-06 08:27:52 +00:00
|
|
|
let yy2 = y2 * quat.v.y;
|
|
|
|
let yz2 = y2 * quat.v.z;
|
|
|
|
let zz2 = z2 * quat.v.z;
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2015-05-06 08:27:52 +00:00
|
|
|
let sy2 = y2 * quat.s;
|
|
|
|
let sz2 = z2 * quat.s;
|
|
|
|
let sx2 = x2 * quat.s;
|
2013-09-03 07:28:43 +00:00
|
|
|
|
2015-09-29 11:36:57 +00:00
|
|
|
Matrix3::new(S::one() - yy2 - zz2, xy2 + sz2, xz2 - sy2,
|
|
|
|
xy2 - sz2, S::one() - xx2 - zz2, yz2 + sx2,
|
|
|
|
xz2 + sy2, yz2 - sx2, S::one() - xx2 - yy2)
|
2013-09-03 07:28:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-06 08:27:52 +00:00
|
|
|
impl<S: BaseFloat> From<Quaternion<S>> for Matrix4<S> {
|
2017-03-20 23:06:06 +00:00
|
|
|
/// Convert the quaternion to a 4 x 4 rotation matrix.
|
2015-05-06 08:27:52 +00:00
|
|
|
fn from(quat: Quaternion<S>) -> Matrix4<S> {
|
|
|
|
let x2 = quat.v.x + quat.v.x;
|
|
|
|
let y2 = quat.v.y + quat.v.y;
|
|
|
|
let z2 = quat.v.z + quat.v.z;
|
|
|
|
|
|
|
|
let xx2 = x2 * quat.v.x;
|
|
|
|
let xy2 = x2 * quat.v.y;
|
|
|
|
let xz2 = x2 * quat.v.z;
|
|
|
|
|
|
|
|
let yy2 = y2 * quat.v.y;
|
|
|
|
let yz2 = y2 * quat.v.z;
|
|
|
|
let zz2 = z2 * quat.v.z;
|
|
|
|
|
|
|
|
let sy2 = y2 * quat.s;
|
|
|
|
let sz2 = z2 * quat.s;
|
|
|
|
let sx2 = x2 * quat.s;
|
2014-01-29 02:01:57 +00:00
|
|
|
|
2015-09-29 11:36:57 +00:00
|
|
|
Matrix4::new(S::one() - yy2 - zz2, xy2 + sz2, xz2 - sy2, S::zero(),
|
|
|
|
xy2 - sz2, S::one() - xx2 - zz2, yz2 + sx2, S::zero(),
|
|
|
|
xz2 + sy2, yz2 - sx2, S::one() - xx2 - yy2, S::zero(),
|
|
|
|
S::zero(), S::zero(), S::zero(), S::one())
|
2014-01-29 02:01:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-30 00:24:34 +00:00
|
|
|
// Quaternion Rotation impls
|
|
|
|
|
2015-05-06 08:35:09 +00:00
|
|
|
impl<S: BaseFloat> From<Quaternion<S>> for Basis3<S> {
|
2014-01-30 00:24:34 +00:00
|
|
|
#[inline]
|
2015-05-06 08:35:09 +00:00
|
|
|
fn from(quat: Quaternion<S>) -> Basis3<S> { Basis3::from_quaternion(&quat) }
|
2014-01-30 00:24:34 +00:00
|
|
|
}
|
|
|
|
|
2015-11-03 04:23:22 +00:00
|
|
|
impl<S: BaseFloat> Rotation<Point3<S>> for Quaternion<S> {
|
2014-01-30 00:24:34 +00:00
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
fn look_at(dir: Vector3<S>, up: Vector3<S>) -> Quaternion<S> {
|
2015-05-06 08:38:15 +00:00
|
|
|
Matrix3::look_at(dir, up).into()
|
2014-01-30 00:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2015-11-09 09:12:04 +00:00
|
|
|
fn between_vectors(a: Vector3<S>, b: Vector3<S>) -> Quaternion<S> {
|
2014-01-30 00:24:34 +00:00
|
|
|
//http://stackoverflow.com/questions/1171849/
|
|
|
|
//finding-quaternion-representing-the-rotation-from-one-vector-to-another
|
2015-09-29 11:36:57 +00:00
|
|
|
Quaternion::from_sv(S::one() + a.dot(b), a.cross(b)).normalize()
|
2014-01-30 00:24:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2015-12-12 07:39:31 +00:00
|
|
|
fn rotate_vector(&self, vec: Vector3<S>) -> Vector3<S> { self * vec }
|
2014-01-30 00:24:34 +00:00
|
|
|
|
|
|
|
#[inline]
|
2015-12-12 07:39:31 +00:00
|
|
|
fn invert(&self) -> Quaternion<S> { self.conjugate() / self.magnitude2() }
|
2014-01-30 00:24:34 +00:00
|
|
|
}
|
|
|
|
|
2015-12-13 01:20:07 +00:00
|
|
|
impl<S: BaseFloat> Rotation3<S> for Quaternion<S> {
|
2014-01-30 00:24:34 +00:00
|
|
|
#[inline]
|
2016-07-27 00:30:05 +00:00
|
|
|
fn from_axis_angle<A: Into<Rad<S>>>(axis: Vector3<S>, angle: A) -> Quaternion<S> {
|
|
|
|
let (s, c) = Rad::sin_cos(angle.into() * cast(0.5f64).unwrap());
|
2015-12-12 12:24:14 +00:00
|
|
|
Quaternion::from_sv(c, axis * s)
|
2014-01-30 00:24:34 +00:00
|
|
|
}
|
|
|
|
}
|
2015-03-15 02:53:57 +00:00
|
|
|
|
2015-09-20 15:32:53 +00:00
|
|
|
impl<S: BaseFloat> Into<[S; 4]> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn into(self) -> [S; 4] {
|
|
|
|
match self.into() { (w, xi, yj, zk) => [w, xi, yj, zk] }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseFloat> AsRef<[S; 4]> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn as_ref(&self) -> &[S; 4] {
|
|
|
|
unsafe { mem::transmute(self) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseFloat> AsMut<[S; 4]> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn as_mut(&mut self) -> &mut [S; 4] {
|
|
|
|
unsafe { mem::transmute(self) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseFloat> From<[S; 4]> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn from(v: [S; 4]) -> Quaternion<S> {
|
|
|
|
Quaternion::new(v[0], v[1], v[2], v[3])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, S: BaseFloat> From<&'a [S; 4]> for &'a Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn from(v: &'a [S; 4]) -> &'a Quaternion<S> {
|
|
|
|
unsafe { mem::transmute(v) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, S: BaseFloat> From<&'a mut [S; 4]> for &'a mut Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn from(v: &'a mut [S; 4]) -> &'a mut Quaternion<S> {
|
|
|
|
unsafe { mem::transmute(v) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseFloat> Into<(S, S, S, S)> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn into(self) -> (S, S, S, S) {
|
|
|
|
match self { Quaternion { s, v: Vector3 { x, y, z } } => (s, x, y, z) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseFloat> AsRef<(S, S, S, S)> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn as_ref(&self) -> &(S, S, S, S) {
|
|
|
|
unsafe { mem::transmute(self) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseFloat> AsMut<(S, S, S, S)> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn as_mut(&mut self) -> &mut (S, S, S, S) {
|
|
|
|
unsafe { mem::transmute(self) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: BaseFloat> From<(S, S, S, S)> for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn from(v: (S, S, S, S)) -> Quaternion<S> {
|
|
|
|
match v { (w, xi, yj, zk) => Quaternion::new(w, xi, yj, zk) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, S: BaseFloat> From<&'a (S, S, S, S)> for &'a Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn from(v: &'a (S, S, S, S)) -> &'a Quaternion<S> {
|
|
|
|
unsafe { mem::transmute(v) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, S: BaseFloat> From<&'a mut (S, S, S, S)> for &'a mut Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn from(v: &'a mut (S, S, S, S)) -> &'a mut Quaternion<S> {
|
|
|
|
unsafe { mem::transmute(v) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:56:03 +00:00
|
|
|
macro_rules! index_operators {
|
|
|
|
($S:ident, $Output:ty, $I:ty) => {
|
|
|
|
impl<$S: BaseFloat> Index<$I> for Quaternion<$S> {
|
|
|
|
type Output = $Output;
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn index<'a>(&'a self, i: $I) -> &'a $Output {
|
|
|
|
let v: &[$S; 4] = self.as_ref(); &v[i]
|
|
|
|
}
|
|
|
|
}
|
2015-09-20 15:32:53 +00:00
|
|
|
|
2015-09-20 21:56:03 +00:00
|
|
|
impl<$S: BaseFloat> IndexMut<$I> for Quaternion<$S> {
|
|
|
|
#[inline]
|
|
|
|
fn index_mut<'a>(&'a mut self, i: $I) -> &'a mut $Output {
|
|
|
|
let v: &mut [$S; 4] = self.as_mut(); &mut v[i]
|
|
|
|
}
|
|
|
|
}
|
2015-09-20 15:32:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-20 21:56:03 +00:00
|
|
|
index_operators!(S, S, usize);
|
|
|
|
index_operators!(S, [S], Range<usize>);
|
|
|
|
index_operators!(S, [S], RangeTo<usize>);
|
|
|
|
index_operators!(S, [S], RangeFrom<usize>);
|
|
|
|
index_operators!(S, [S], RangeFull);
|
2015-09-20 15:32:53 +00:00
|
|
|
|
2015-03-15 02:53:57 +00:00
|
|
|
impl<S: BaseFloat + Rand> Rand for Quaternion<S> {
|
|
|
|
#[inline]
|
|
|
|
fn rand<R: Rng>(rng: &mut R) -> Quaternion<S> {
|
|
|
|
Quaternion::from_sv(rng.gen(), rng.gen())
|
|
|
|
}
|
|
|
|
}
|
2015-09-27 07:20:02 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use quaternion::*;
|
|
|
|
use vector::*;
|
|
|
|
|
|
|
|
const QUATERNION: Quaternion<f32> = Quaternion {
|
|
|
|
s: 1.0,
|
|
|
|
v: Vector3 { x: 2.0, y: 3.0, z: 4.0 },
|
|
|
|
};
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_into() {
|
|
|
|
let v = QUATERNION;
|
|
|
|
{
|
|
|
|
let v: [f32; 4] = v.into();
|
|
|
|
assert_eq!(v, [1.0, 2.0, 3.0, 4.0]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: (f32, f32, f32, f32) = v.into();
|
|
|
|
assert_eq!(v, (1.0, 2.0, 3.0, 4.0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_ref() {
|
|
|
|
let v = QUATERNION;
|
|
|
|
{
|
|
|
|
let v: &[f32; 4] = v.as_ref();
|
|
|
|
assert_eq!(v, &[1.0, 2.0, 3.0, 4.0]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &(f32, f32, f32, f32) = v.as_ref();
|
|
|
|
assert_eq!(v, &(1.0, 2.0, 3.0, 4.0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_as_mut() {
|
|
|
|
let mut v = QUATERNION;
|
|
|
|
{
|
|
|
|
let v: &mut[f32; 4] = v.as_mut();
|
|
|
|
assert_eq!(v, &mut [1.0, 2.0, 3.0, 4.0]);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v: &mut(f32, f32, f32, f32) = v.as_mut();
|
|
|
|
assert_eq!(v, &mut (1.0, 2.0, 3.0, 4.0));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_from() {
|
|
|
|
assert_eq!(Quaternion::from([1.0, 2.0, 3.0, 4.0]), QUATERNION);
|
|
|
|
{
|
|
|
|
let v = &[1.0, 2.0, 3.0, 4.0];
|
|
|
|
let v: &Quaternion<_> = From::from(v);
|
|
|
|
assert_eq!(v, &QUATERNION);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut [1.0, 2.0, 3.0, 4.0];
|
|
|
|
let v: &mut Quaternion<_> = From::from(v);
|
|
|
|
assert_eq!(v, &QUATERNION);
|
|
|
|
}
|
|
|
|
assert_eq!(Quaternion::from((1.0, 2.0, 3.0, 4.0)), QUATERNION);
|
|
|
|
{
|
|
|
|
let v = &(1.0, 2.0, 3.0, 4.0);
|
|
|
|
let v: &Quaternion<_> = From::from(v);
|
|
|
|
assert_eq!(v, &QUATERNION);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
let v = &mut (1.0, 2.0, 3.0, 4.0);
|
|
|
|
let v: &mut Quaternion<_> = From::from(v);
|
|
|
|
assert_eq!(v, &QUATERNION);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|