#[repr(C)]pub struct Quaternion<T> {
pub coords: Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>,
}
Expand description
A quaternion. See the type alias UnitQuaternion = Unit<Quaternion>
for a quaternion
that may be used as a rotation.
Fields§
§coords: Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>
This quaternion as a 4D vector of coordinates in the [ x, y, z, w ]
storage order.
Implementations§
Source§impl<T> Quaternion<T>
impl<T> Quaternion<T>
Sourcepub fn into_owned(self) -> Quaternion<T>
👎Deprecated: This method is a no-op and will be removed in a future release.
pub fn into_owned(self) -> Quaternion<T>
Moves this unit quaternion into one that owns its data.
Sourcepub fn clone_owned(&self) -> Quaternion<T>
👎Deprecated: This method is a no-op and will be removed in a future release.
pub fn clone_owned(&self) -> Quaternion<T>
Clones this unit quaternion into one that owns its data.
Sourcepub fn normalize(&self) -> Quaternion<T>
pub fn normalize(&self) -> Quaternion<T>
Normalizes this quaternion.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let q_normalized = q.normalize();
assert_relative_eq!(q_normalized.norm(), 1.0);
Sourcepub fn imag(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>
pub fn imag(&self) -> Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>
The imaginary part of this quaternion.
Sourcepub fn conjugate(&self) -> Quaternion<T>
pub fn conjugate(&self) -> Quaternion<T>
The conjugate of this quaternion.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let conj = q.conjugate();
assert!(conj.i == -2.0 && conj.j == -3.0 && conj.k == -4.0 && conj.w == 1.0);
Sourcepub fn lerp(&self, other: &Quaternion<T>, t: T) -> Quaternion<T>
pub fn lerp(&self, other: &Quaternion<T>, t: T) -> Quaternion<T>
Linear interpolation between two quaternion.
Computes self * (1 - t) + other * t
.
§Example
let q1 = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let q2 = Quaternion::new(10.0, 20.0, 30.0, 40.0);
assert_eq!(q1.lerp(&q2, 0.1), Quaternion::new(1.9, 3.8, 5.7, 7.6));
Sourcepub fn vector(
&self,
) -> Matrix<T, Const<3>, Const<1>, ViewStorage<'_, T, Const<3>, Const<1>, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::RStride, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::CStride>>
pub fn vector( &self, ) -> Matrix<T, Const<3>, Const<1>, ViewStorage<'_, T, Const<3>, Const<1>, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::RStride, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::CStride>>
The vector part (i, j, k)
of this quaternion.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_eq!(q.vector()[0], 2.0);
assert_eq!(q.vector()[1], 3.0);
assert_eq!(q.vector()[2], 4.0);
Sourcepub fn scalar(&self) -> T
pub fn scalar(&self) -> T
The scalar part w
of this quaternion.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_eq!(q.scalar(), 1.0);
Sourcepub fn as_vector(&self) -> &Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>
pub fn as_vector(&self) -> &Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>
Reinterprets this quaternion as a 4D vector.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
// Recall that the quaternion is stored internally as (i, j, k, w)
// while the crate::new constructor takes the arguments as (w, i, j, k).
assert_eq!(*q.as_vector(), Vector4::new(2.0, 3.0, 4.0, 1.0));
Sourcepub fn norm(&self) -> T
pub fn norm(&self) -> T
The norm of this quaternion.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_relative_eq!(q.norm(), 5.47722557, epsilon = 1.0e-6);
Sourcepub fn magnitude(&self) -> T
pub fn magnitude(&self) -> T
A synonym for the norm of this quaternion.
Aka the length.
This is the same as .norm()
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_relative_eq!(q.magnitude(), 5.47722557, epsilon = 1.0e-6);
Sourcepub fn norm_squared(&self) -> T
pub fn norm_squared(&self) -> T
The squared norm of this quaternion.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_eq!(q.norm_squared(), 30.0);
Sourcepub fn magnitude_squared(&self) -> T
pub fn magnitude_squared(&self) -> T
A synonym for the squared norm of this quaternion.
Aka the squared length.
This is the same as .norm_squared()
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_eq!(q.magnitude_squared(), 30.0);
Sourcepub fn dot(&self, rhs: &Quaternion<T>) -> T
pub fn dot(&self, rhs: &Quaternion<T>) -> T
The dot product of two quaternions.
§Example
let q1 = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let q2 = Quaternion::new(5.0, 6.0, 7.0, 8.0);
assert_eq!(q1.dot(&q2), 70.0);
Source§impl<T> Quaternion<T>
impl<T> Quaternion<T>
Sourcepub fn try_inverse(&self) -> Option<Quaternion<T>>where
T: RealField,
pub fn try_inverse(&self) -> Option<Quaternion<T>>where
T: RealField,
Inverts this quaternion if it is not zero.
This method also does not works with SIMD components (see simd_try_inverse
instead).
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let inv_q = q.try_inverse();
assert!(inv_q.is_some());
assert_relative_eq!(inv_q.unwrap() * q, Quaternion::identity());
//Non-invertible case
let q = Quaternion::new(0.0, 0.0, 0.0, 0.0);
let inv_q = q.try_inverse();
assert!(inv_q.is_none());
Sourcepub fn simd_try_inverse(&self) -> SimdOption<Quaternion<T>>
pub fn simd_try_inverse(&self) -> SimdOption<Quaternion<T>>
Attempt to inverse this quaternion.
This method also works with SIMD components.
Sourcepub fn inner(&self, other: &Quaternion<T>) -> Quaternion<T>
pub fn inner(&self, other: &Quaternion<T>) -> Quaternion<T>
Calculates the inner product (also known as the dot product). See “Foundations of Game Engine Development, Volume 1: Mathematics” by Lengyel Formula 4.89.
§Example
let a = Quaternion::new(0.0, 2.0, 3.0, 4.0);
let b = Quaternion::new(0.0, 5.0, 2.0, 1.0);
let expected = Quaternion::new(-20.0, 0.0, 0.0, 0.0);
let result = a.inner(&b);
assert_relative_eq!(expected, result, epsilon = 1.0e-5);
Sourcepub fn outer(&self, other: &Quaternion<T>) -> Quaternion<T>
pub fn outer(&self, other: &Quaternion<T>) -> Quaternion<T>
Calculates the outer product (also known as the wedge product). See “Foundations of Game Engine Development, Volume 1: Mathematics” by Lengyel Formula 4.89.
§Example
let a = Quaternion::new(0.0, 2.0, 3.0, 4.0);
let b = Quaternion::new(0.0, 5.0, 2.0, 1.0);
let expected = Quaternion::new(0.0, -5.0, 18.0, -11.0);
let result = a.outer(&b);
assert_relative_eq!(expected, result, epsilon = 1.0e-5);
Sourcepub fn project(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
pub fn project(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
Calculates the projection of self
onto other
(also known as the parallel).
See “Foundations of Game Engine Development, Volume 1: Mathematics” by Lengyel
Formula 4.94.
§Example
let a = Quaternion::new(0.0, 2.0, 3.0, 4.0);
let b = Quaternion::new(0.0, 5.0, 2.0, 1.0);
let expected = Quaternion::new(0.0, 3.333333333333333, 1.3333333333333333, 0.6666666666666666);
let result = a.project(&b).unwrap();
assert_relative_eq!(expected, result, epsilon = 1.0e-5);
Sourcepub fn reject(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
pub fn reject(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
Calculates the rejection of self
from other
(also known as the perpendicular).
See “Foundations of Game Engine Development, Volume 1: Mathematics” by Lengyel
Formula 4.94.
§Example
let a = Quaternion::new(0.0, 2.0, 3.0, 4.0);
let b = Quaternion::new(0.0, 5.0, 2.0, 1.0);
let expected = Quaternion::new(0.0, -1.3333333333333333, 1.6666666666666665, 3.3333333333333335);
let result = a.reject(&b).unwrap();
assert_relative_eq!(expected, result, epsilon = 1.0e-5);
Sourcepub fn polar_decomposition(
&self,
) -> (T, T, Option<Unit<Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>>>)where
T: RealField,
pub fn polar_decomposition(
&self,
) -> (T, T, Option<Unit<Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>>>)where
T: RealField,
The polar decomposition of this quaternion.
Returns, from left to right: the quaternion norm, the half rotation angle, the rotation
axis. If the rotation angle is zero, the rotation axis is set to None
.
§Example
let q = Quaternion::new(0.0, 5.0, 0.0, 0.0);
let (norm, half_ang, axis) = q.polar_decomposition();
assert_eq!(norm, 5.0);
assert_eq!(half_ang, f32::consts::FRAC_PI_2);
assert_eq!(axis, Some(Vector3::x_axis()));
Sourcepub fn ln(&self) -> Quaternion<T>
pub fn ln(&self) -> Quaternion<T>
Compute the natural logarithm of a quaternion.
§Example
let q = Quaternion::new(2.0, 5.0, 0.0, 0.0);
assert_relative_eq!(q.ln(), Quaternion::new(1.683647, 1.190289, 0.0, 0.0), epsilon = 1.0e-6)
Sourcepub fn exp(&self) -> Quaternion<T>
pub fn exp(&self) -> Quaternion<T>
Compute the exponential of a quaternion.
§Example
let q = Quaternion::new(1.683647, 1.190289, 0.0, 0.0);
assert_relative_eq!(q.exp(), Quaternion::new(2.0, 5.0, 0.0, 0.0), epsilon = 1.0e-5)
Sourcepub fn exp_eps(&self, eps: T) -> Quaternion<T>
pub fn exp_eps(&self, eps: T) -> Quaternion<T>
Compute the exponential of a quaternion. Returns the identity if the vector part of this quaternion
has a norm smaller than eps
.
§Example
let q = Quaternion::new(1.683647, 1.190289, 0.0, 0.0);
assert_relative_eq!(q.exp_eps(1.0e-6), Quaternion::new(2.0, 5.0, 0.0, 0.0), epsilon = 1.0e-5);
// Singular case.
let q = Quaternion::new(0.0000001, 0.0, 0.0, 0.0);
assert_eq!(q.exp_eps(1.0e-6), Quaternion::identity());
Sourcepub fn powf(&self, n: T) -> Quaternion<T>
pub fn powf(&self, n: T) -> Quaternion<T>
Raise the quaternion to a given floating power.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_relative_eq!(q.powf(1.5), Quaternion::new( -6.2576659, 4.1549037, 6.2323556, 8.3098075), epsilon = 1.0e-6);
Sourcepub fn as_vector_mut(
&mut self,
) -> &mut Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>
pub fn as_vector_mut( &mut self, ) -> &mut Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>
Transforms this quaternion into its 4D vector form (Vector part, Scalar part).
§Example
let mut q = Quaternion::identity();
*q.as_vector_mut() = Vector4::new(1.0, 2.0, 3.0, 4.0);
assert!(q.i == 1.0 && q.j == 2.0 && q.k == 3.0 && q.w == 4.0);
Sourcepub fn vector_mut(
&mut self,
) -> Matrix<T, Const<3>, Const<1>, ViewStorageMut<'_, T, Const<3>, Const<1>, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::RStride, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::CStride>>
pub fn vector_mut( &mut self, ) -> Matrix<T, Const<3>, Const<1>, ViewStorageMut<'_, T, Const<3>, Const<1>, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::RStride, <<DefaultAllocator as Allocator<Const<4>>>::Buffer<T> as RawStorage<T, Const<4>>>::CStride>>
The mutable vector part (i, j, k)
of this quaternion.
§Example
let mut q = Quaternion::identity();
{
let mut v = q.vector_mut();
v[0] = 2.0;
v[1] = 3.0;
v[2] = 4.0;
}
assert!(q.i == 2.0 && q.j == 3.0 && q.k == 4.0 && q.w == 1.0);
Sourcepub fn conjugate_mut(&mut self)
pub fn conjugate_mut(&mut self)
Replaces this quaternion by its conjugate.
§Example
let mut q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
q.conjugate_mut();
assert!(q.i == -2.0 && q.j == -3.0 && q.k == -4.0 && q.w == 1.0);
Sourcepub fn try_inverse_mut(&mut self) -> <T as SimdValue>::SimdBool
pub fn try_inverse_mut(&mut self) -> <T as SimdValue>::SimdBool
Inverts this quaternion in-place if it is not zero.
§Example
let mut q = Quaternion::new(1.0f32, 2.0, 3.0, 4.0);
assert!(q.try_inverse_mut());
assert_relative_eq!(q * Quaternion::new(1.0, 2.0, 3.0, 4.0), Quaternion::identity());
//Non-invertible case
let mut q = Quaternion::new(0.0f32, 0.0, 0.0, 0.0);
assert!(!q.try_inverse_mut());
Sourcepub fn normalize_mut(&mut self) -> T
pub fn normalize_mut(&mut self) -> T
Normalizes this quaternion.
§Example
let mut q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
q.normalize_mut();
assert_relative_eq!(q.norm(), 1.0);
Sourcepub fn squared(&self) -> Quaternion<T>
pub fn squared(&self) -> Quaternion<T>
Calculates square of a quaternion.
Sourcepub fn half(&self) -> Quaternion<T>
pub fn half(&self) -> Quaternion<T>
Divides quaternion into two.
Sourcepub fn sqrt(&self) -> Quaternion<T>
pub fn sqrt(&self) -> Quaternion<T>
Calculates square root.
Sourcepub fn is_pure(&self) -> bool
pub fn is_pure(&self) -> bool
Check if the quaternion is pure.
A quaternion is pure if it has no real part (self.w == 0.0
).
Sourcepub fn pure(&self) -> Quaternion<T>
pub fn pure(&self) -> Quaternion<T>
Convert quaternion to pure quaternion.
Sourcepub fn left_div(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
pub fn left_div(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
Left quaternionic division.
Calculates B-1 * A where A = self, B = other.
Sourcepub fn right_div(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
pub fn right_div(&self, other: &Quaternion<T>) -> Option<Quaternion<T>>where
T: RealField,
Right quaternionic division.
Calculates A * B-1 where A = self, B = other.
§Example
let a = Quaternion::new(0.0, 1.0, 2.0, 3.0);
let b = Quaternion::new(0.0, 5.0, 2.0, 1.0);
let result = a.right_div(&b).unwrap();
let expected = Quaternion::new(0.4, 0.13333333333333336, -0.4666666666666667, 0.26666666666666666);
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn cos(&self) -> Quaternion<T>
pub fn cos(&self) -> Quaternion<T>
Calculates the quaternionic cosinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(58.93364616794395, -34.086183690465596, -51.1292755356984, -68.17236738093119);
let result = input.cos();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn acos(&self) -> Quaternion<T>
pub fn acos(&self) -> Quaternion<T>
Calculates the quaternionic arccosinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let result = input.cos().acos();
assert_relative_eq!(input, result, epsilon = 1.0e-7);
Sourcepub fn sin(&self) -> Quaternion<T>
pub fn sin(&self) -> Quaternion<T>
Calculates the quaternionic sinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(91.78371578403467, 21.886486853029176, 32.82973027954377, 43.77297370605835);
let result = input.sin();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn asin(&self) -> Quaternion<T>
pub fn asin(&self) -> Quaternion<T>
Calculates the quaternionic arcsinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let result = input.sin().asin();
assert_relative_eq!(input, result, epsilon = 1.0e-7);
Sourcepub fn tan(&self) -> Quaternion<T>where
T: RealField,
pub fn tan(&self) -> Quaternion<T>where
T: RealField,
Calculates the quaternionic tangent.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(0.00003821631725009489, 0.3713971716439371, 0.5570957574659058, 0.7427943432878743);
let result = input.tan();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn atan(&self) -> Quaternion<T>where
T: RealField,
pub fn atan(&self) -> Quaternion<T>where
T: RealField,
Calculates the quaternionic arctangent.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let result = input.tan().atan();
assert_relative_eq!(input, result, epsilon = 1.0e-7);
Sourcepub fn sinh(&self) -> Quaternion<T>
pub fn sinh(&self) -> Quaternion<T>
Calculates the hyperbolic quaternionic sinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(0.7323376060463428, -0.4482074499805421, -0.6723111749708133, -0.8964148999610843);
let result = input.sinh();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn asinh(&self) -> Quaternion<T>
pub fn asinh(&self) -> Quaternion<T>
Calculates the hyperbolic quaternionic arcsinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(2.385889902585242, 0.514052600662788, 0.7710789009941821, 1.028105201325576);
let result = input.asinh();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn cosh(&self) -> Quaternion<T>
pub fn cosh(&self) -> Quaternion<T>
Calculates the hyperbolic quaternionic cosinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(0.9615851176369566, -0.3413521745610167, -0.5120282618415251, -0.6827043491220334);
let result = input.cosh();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn acosh(&self) -> Quaternion<T>
pub fn acosh(&self) -> Quaternion<T>
Calculates the hyperbolic quaternionic arccosinus.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(2.4014472020074007, 0.5162761016176176, 0.7744141524264264, 1.0325522032352352);
let result = input.acosh();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn tanh(&self) -> Quaternion<T>where
T: RealField,
pub fn tanh(&self) -> Quaternion<T>where
T: RealField,
Calculates the hyperbolic quaternionic tangent.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(1.0248695360556623, -0.10229568178876419, -0.1534435226831464, -0.20459136357752844);
let result = input.tanh();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Sourcepub fn atanh(&self) -> Quaternion<T>
pub fn atanh(&self) -> Quaternion<T>
Calculates the hyperbolic quaternionic arctangent.
§Example
let input = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let expected = Quaternion::new(0.03230293287000163, 0.5173453683196951, 0.7760180524795426, 1.0346907366393903);
let result = input.atanh();
assert_relative_eq!(expected, result, epsilon = 1.0e-7);
Source§impl<T> Quaternion<T>
impl<T> Quaternion<T>
Sourcepub const fn from_vector(
vector: Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>,
) -> Quaternion<T>
pub const fn from_vector( vector: Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>, ) -> Quaternion<T>
Creates a quaternion from a 4D vector. The quaternion scalar part corresponds to the w
vector component.
Sourcepub const fn new(w: T, i: T, j: T, k: T) -> Quaternion<T>
pub const fn new(w: T, i: T, j: T, k: T) -> Quaternion<T>
Creates a new quaternion from its individual components. Note that the arguments order does not follow the storage order.
The storage order is [ i, j, k, w ]
while the arguments for this functions are in the
order (w, i, j, k)
.
§Example
let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert!(q.i == 2.0 && q.j == 3.0 && q.k == 4.0 && q.w == 1.0);
assert_eq!(*q.as_vector(), Vector4::new(2.0, 3.0, 4.0, 1.0));
Sourcepub fn cast<To>(self) -> Quaternion<To>
pub fn cast<To>(self) -> Quaternion<To>
Cast the components of self
to another type.
§Example
let q = Quaternion::new(1.0f64, 2.0, 3.0, 4.0);
let q2 = q.cast::<f32>();
assert_eq!(q2, Quaternion::new(1.0f32, 2.0, 3.0, 4.0));
Source§impl<T> Quaternion<T>where
T: SimdRealField,
impl<T> Quaternion<T>where
T: SimdRealField,
Sourcepub fn from_imag(
vector: Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>,
) -> Quaternion<T>
pub fn from_imag( vector: Matrix<T, Const<3>, Const<1>, ArrayStorage<T, 3, 1>>, ) -> Quaternion<T>
Constructs a pure quaternion.
Sourcepub fn from_parts<SB>(
scalar: T,
vector: Matrix<T, Const<3>, Const<1>, SB>,
) -> Quaternion<T>
pub fn from_parts<SB>( scalar: T, vector: Matrix<T, Const<3>, Const<1>, SB>, ) -> Quaternion<T>
Creates a new quaternion from its scalar and vector parts. Note that the arguments order does not follow the storage order.
The storage order is [ vector, scalar ].
§Example
let w = 1.0;
let ijk = Vector3::new(2.0, 3.0, 4.0);
let q = Quaternion::from_parts(w, ijk);
assert!(q.i == 2.0 && q.j == 3.0 && q.k == 4.0 && q.w == 1.0);
assert_eq!(*q.as_vector(), Vector4::new(2.0, 3.0, 4.0, 1.0));
Sourcepub fn from_real(r: T) -> Quaternion<T>
pub fn from_real(r: T) -> Quaternion<T>
Constructs a real quaternion.
Sourcepub fn identity() -> Quaternion<T>
pub fn identity() -> Quaternion<T>
The quaternion multiplicative identity.
§Example
let q = Quaternion::identity();
let q2 = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_eq!(q * q2, q2);
assert_eq!(q2 * q, q2);
Source§impl<T> Quaternion<T>
impl<T> Quaternion<T>
Sourcepub fn from_polar_decomposition<SB>(
scale: T,
theta: T,
axis: Unit<Matrix<T, Const<3>, Const<1>, SB>>,
) -> Quaternion<T>
pub fn from_polar_decomposition<SB>( scale: T, theta: T, axis: Unit<Matrix<T, Const<3>, Const<1>, SB>>, ) -> Quaternion<T>
Creates a new quaternion from its polar decomposition.
Note that axis
is assumed to be a unit vector.
Trait Implementations§
Source§impl<T> AbsDiffEq for Quaternion<T>
impl<T> AbsDiffEq for Quaternion<T>
Source§fn default_epsilon() -> <Quaternion<T> as AbsDiffEq>::Epsilon
fn default_epsilon() -> <Quaternion<T> as AbsDiffEq>::Epsilon
Source§fn abs_diff_eq(
&self,
other: &Quaternion<T>,
epsilon: <Quaternion<T> as AbsDiffEq>::Epsilon,
) -> bool
fn abs_diff_eq( &self, other: &Quaternion<T>, epsilon: <Quaternion<T> as AbsDiffEq>::Epsilon, ) -> bool
Source§fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
fn abs_diff_ne(&self, other: &Rhs, epsilon: Self::Epsilon) -> bool
AbsDiffEq::abs_diff_eq
.Source§impl<'a, 'b, T> Add<&'b Quaternion<T>> for &'a Quaternion<T>
impl<'a, 'b, T> Add<&'b Quaternion<T>> for &'a Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
+
operator.Source§fn add(
self,
rhs: &'b Quaternion<T>,
) -> <&'a Quaternion<T> as Add<&'b Quaternion<T>>>::Output
fn add( self, rhs: &'b Quaternion<T>, ) -> <&'a Quaternion<T> as Add<&'b Quaternion<T>>>::Output
+
operation. Read moreSource§impl<'b, T> Add<&'b Quaternion<T>> for Quaternion<T>
impl<'b, T> Add<&'b Quaternion<T>> for Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
+
operator.Source§fn add(
self,
rhs: &'b Quaternion<T>,
) -> <Quaternion<T> as Add<&'b Quaternion<T>>>::Output
fn add( self, rhs: &'b Quaternion<T>, ) -> <Quaternion<T> as Add<&'b Quaternion<T>>>::Output
+
operation. Read moreSource§impl<'a, T> Add<Quaternion<T>> for &'a Quaternion<T>
impl<'a, T> Add<Quaternion<T>> for &'a Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
+
operator.Source§fn add(
self,
rhs: Quaternion<T>,
) -> <&'a Quaternion<T> as Add<Quaternion<T>>>::Output
fn add( self, rhs: Quaternion<T>, ) -> <&'a Quaternion<T> as Add<Quaternion<T>>>::Output
+
operation. Read moreSource§impl<T> Add for Quaternion<T>
impl<T> Add for Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
+
operator.Source§fn add(self, rhs: Quaternion<T>) -> <Quaternion<T> as Add>::Output
fn add(self, rhs: Quaternion<T>) -> <Quaternion<T> as Add>::Output
+
operation. Read moreSource§impl<'b, T> AddAssign<&'b Quaternion<T>> for Quaternion<T>
impl<'b, T> AddAssign<&'b Quaternion<T>> for Quaternion<T>
Source§fn add_assign(&mut self, rhs: &'b Quaternion<T>)
fn add_assign(&mut self, rhs: &'b Quaternion<T>)
+=
operation. Read moreSource§impl<T> AddAssign for Quaternion<T>
impl<T> AddAssign for Quaternion<T>
Source§fn add_assign(&mut self, rhs: Quaternion<T>)
fn add_assign(&mut self, rhs: Quaternion<T>)
+=
operation. Read moreSource§impl<T> Clone for Quaternion<T>where
T: Clone,
impl<T> Clone for Quaternion<T>where
T: Clone,
Source§fn clone(&self) -> Quaternion<T>
fn clone(&self) -> Quaternion<T>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl<T> Debug for Quaternion<T>where
T: Debug,
impl<T> Debug for Quaternion<T>where
T: Debug,
Source§impl<T> Default for Quaternion<T>
impl<T> Default for Quaternion<T>
Source§fn default() -> Quaternion<T>
fn default() -> Quaternion<T>
Source§impl<T> DerefMut for Quaternion<T>
impl<T> DerefMut for Quaternion<T>
Source§impl<'a, T> Deserialize<'a> for Quaternion<T>
impl<'a, T> Deserialize<'a> for Quaternion<T>
Source§fn deserialize<Des>(
deserializer: Des,
) -> Result<Quaternion<T>, <Des as Deserializer<'a>>::Error>where
Des: Deserializer<'a>,
fn deserialize<Des>(
deserializer: Des,
) -> Result<Quaternion<T>, <Des as Deserializer<'a>>::Error>where
Des: Deserializer<'a>,
Source§impl<T> Display for Quaternion<T>
impl<T> Display for Quaternion<T>
Source§impl<'a, T> Div<T> for &'a Quaternion<T>
impl<'a, T> Div<T> for &'a Quaternion<T>
Source§impl<T> Div<T> for Quaternion<T>
impl<T> Div<T> for Quaternion<T>
Source§impl<T> DivAssign<T> for Quaternion<T>
impl<T> DivAssign<T> for Quaternion<T>
Source§fn div_assign(&mut self, n: T)
fn div_assign(&mut self, n: T)
/=
operation. Read moreSource§impl<T> From<[Quaternion<<T as SimdValue>::Element>; 16]> for Quaternion<T>
impl<T> From<[Quaternion<<T as SimdValue>::Element>; 16]> for Quaternion<T>
Source§fn from(arr: [Quaternion<<T as SimdValue>::Element>; 16]) -> Quaternion<T>
fn from(arr: [Quaternion<<T as SimdValue>::Element>; 16]) -> Quaternion<T>
Source§impl<T> From<[Quaternion<<T as SimdValue>::Element>; 2]> for Quaternion<T>
impl<T> From<[Quaternion<<T as SimdValue>::Element>; 2]> for Quaternion<T>
Source§fn from(arr: [Quaternion<<T as SimdValue>::Element>; 2]) -> Quaternion<T>
fn from(arr: [Quaternion<<T as SimdValue>::Element>; 2]) -> Quaternion<T>
Source§impl<T> From<[Quaternion<<T as SimdValue>::Element>; 4]> for Quaternion<T>
impl<T> From<[Quaternion<<T as SimdValue>::Element>; 4]> for Quaternion<T>
Source§fn from(arr: [Quaternion<<T as SimdValue>::Element>; 4]) -> Quaternion<T>
fn from(arr: [Quaternion<<T as SimdValue>::Element>; 4]) -> Quaternion<T>
Source§impl<T> From<[Quaternion<<T as SimdValue>::Element>; 8]> for Quaternion<T>
impl<T> From<[Quaternion<<T as SimdValue>::Element>; 8]> for Quaternion<T>
Source§fn from(arr: [Quaternion<<T as SimdValue>::Element>; 8]) -> Quaternion<T>
fn from(arr: [Quaternion<<T as SimdValue>::Element>; 8]) -> Quaternion<T>
Source§impl<T> From<[T; 4]> for Quaternion<T>where
T: Scalar,
impl<T> From<[T; 4]> for Quaternion<T>where
T: Scalar,
Source§fn from(coords: [T; 4]) -> Quaternion<T>
fn from(coords: [T; 4]) -> Quaternion<T>
Source§impl<T> From<Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>> for Quaternion<T>where
T: Scalar,
impl<T> From<Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>> for Quaternion<T>where
T: Scalar,
Source§fn from(
coords: Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>,
) -> Quaternion<T>
fn from( coords: Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>, ) -> Quaternion<T>
Source§impl<T> Hash for Quaternion<T>
impl<T> Hash for Quaternion<T>
Source§impl<'a, 'b, T> Mul<&'b Quaternion<T>> for &'a Quaternion<T>
impl<'a, 'b, T> Mul<&'b Quaternion<T>> for &'a Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
*
operator.Source§fn mul(
self,
rhs: &'b Quaternion<T>,
) -> <&'a Quaternion<T> as Mul<&'b Quaternion<T>>>::Output
fn mul( self, rhs: &'b Quaternion<T>, ) -> <&'a Quaternion<T> as Mul<&'b Quaternion<T>>>::Output
*
operation. Read moreSource§impl<'b, T> Mul<&'b Quaternion<T>> for Quaternion<T>
impl<'b, T> Mul<&'b Quaternion<T>> for Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
*
operator.Source§fn mul(
self,
rhs: &'b Quaternion<T>,
) -> <Quaternion<T> as Mul<&'b Quaternion<T>>>::Output
fn mul( self, rhs: &'b Quaternion<T>, ) -> <Quaternion<T> as Mul<&'b Quaternion<T>>>::Output
*
operation. Read moreSource§impl<'a, T> Mul<Quaternion<T>> for &'a Quaternion<T>
impl<'a, T> Mul<Quaternion<T>> for &'a Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
*
operator.Source§fn mul(
self,
rhs: Quaternion<T>,
) -> <&'a Quaternion<T> as Mul<Quaternion<T>>>::Output
fn mul( self, rhs: Quaternion<T>, ) -> <&'a Quaternion<T> as Mul<Quaternion<T>>>::Output
*
operation. Read moreSource§impl<'a, T> Mul<T> for &'a Quaternion<T>
impl<'a, T> Mul<T> for &'a Quaternion<T>
Source§impl<T> Mul<T> for Quaternion<T>
impl<T> Mul<T> for Quaternion<T>
Source§impl<T> Mul for Quaternion<T>
impl<T> Mul for Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
*
operator.Source§fn mul(self, rhs: Quaternion<T>) -> <Quaternion<T> as Mul>::Output
fn mul(self, rhs: Quaternion<T>) -> <Quaternion<T> as Mul>::Output
*
operation. Read moreSource§impl<'b, T> MulAssign<&'b Quaternion<T>> for Quaternion<T>
impl<'b, T> MulAssign<&'b Quaternion<T>> for Quaternion<T>
Source§fn mul_assign(&mut self, rhs: &'b Quaternion<T>)
fn mul_assign(&mut self, rhs: &'b Quaternion<T>)
*=
operation. Read moreSource§impl<T> MulAssign<T> for Quaternion<T>
impl<T> MulAssign<T> for Quaternion<T>
Source§fn mul_assign(&mut self, n: T)
fn mul_assign(&mut self, n: T)
*=
operation. Read moreSource§impl<T> MulAssign for Quaternion<T>
impl<T> MulAssign for Quaternion<T>
Source§fn mul_assign(&mut self, rhs: Quaternion<T>)
fn mul_assign(&mut self, rhs: Quaternion<T>)
*=
operation. Read moreSource§impl<'a, T> Neg for &'a Quaternion<T>
impl<'a, T> Neg for &'a Quaternion<T>
Source§impl<T> Neg for Quaternion<T>
impl<T> Neg for Quaternion<T>
Source§impl<T> Normed for Quaternion<T>where
T: SimdRealField,
impl<T> Normed for Quaternion<T>where
T: SimdRealField,
Source§type Norm = <T as SimdComplexField>::SimdRealField
type Norm = <T as SimdComplexField>::SimdRealField
Source§fn norm(&self) -> <T as SimdComplexField>::SimdRealField
fn norm(&self) -> <T as SimdComplexField>::SimdRealField
Source§fn norm_squared(&self) -> <T as SimdComplexField>::SimdRealField
fn norm_squared(&self) -> <T as SimdComplexField>::SimdRealField
Source§fn unscale_mut(&mut self, n: <Quaternion<T> as Normed>::Norm)
fn unscale_mut(&mut self, n: <Quaternion<T> as Normed>::Norm)
self
by n.Source§impl<T> One for Quaternion<T>
impl<T> One for Quaternion<T>
Source§fn one() -> Quaternion<T>
fn one() -> Quaternion<T>
Source§impl<T> PartialEq for Quaternion<T>where
T: Scalar,
impl<T> PartialEq for Quaternion<T>where
T: Scalar,
Source§impl<T> Reflect for Quaternion<T>where
T: Debug,
Quaternion<T>: 'static,
Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>: Reflect,
impl<T> Reflect for Quaternion<T>where
T: Debug,
Quaternion<T>: 'static,
Matrix<T, Const<4>, Const<1>, ArrayStorage<T, 4, 1>>: Reflect,
fn source_path() -> &'static str
fn type_name(&self) -> &'static str
fn doc(&self) -> &'static str
Source§fn assembly_name(&self) -> &'static str
fn assembly_name(&self) -> &'static str
#[derive(Reflect)]
) to ensure that this method will return correct assembly
name. In other words - there’s no guarantee, that any implementation other than proc-macro
will return a correct name of the assembly. Alternatively, you can use env!("CARGO_PKG_NAME")
as an implementation.Source§fn type_assembly_name() -> &'static str
fn type_assembly_name() -> &'static str
#[derive(Reflect)]
) to ensure that this method will return correct assembly
name. In other words - there’s no guarantee, that any implementation other than proc-macro
will return a correct name of the assembly. Alternatively, you can use env!("CARGO_PKG_NAME")
as an implementation.fn fields_info(&self, func: &mut dyn FnMut(&[FieldInfo<'_, '_>]))
fn into_any(self: Box<Quaternion<T>>) -> Box<dyn Any>
fn set( &mut self, value: Box<dyn Reflect>, ) -> Result<Box<dyn Reflect>, Box<dyn Reflect>>
fn as_any(&self, func: &mut dyn FnMut(&(dyn Any + 'static)))
fn as_any_mut(&mut self, func: &mut dyn FnMut(&mut (dyn Any + 'static)))
fn as_reflect(&self, func: &mut dyn FnMut(&(dyn Reflect + 'static)))
fn as_reflect_mut(&mut self, func: &mut dyn FnMut(&mut (dyn Reflect + 'static)))
fn fields(&self, func: &mut dyn FnMut(&[&(dyn Reflect + 'static)]))
fn fields_mut( &mut self, func: &mut dyn FnMut(&mut [&mut (dyn Reflect + 'static)]), )
fn field( &self, name: &str, func: &mut dyn FnMut(Option<&(dyn Reflect + 'static)>), )
fn field_mut( &mut self, name: &str, func: &mut dyn FnMut(Option<&mut (dyn Reflect + 'static)>), )
Source§fn set_field(
&mut self,
field: &str,
value: Box<dyn Reflect>,
func: &mut dyn FnMut(Result<Box<dyn Reflect>, Box<dyn Reflect>>),
)
fn set_field( &mut self, field: &str, value: Box<dyn Reflect>, func: &mut dyn FnMut(Result<Box<dyn Reflect>, Box<dyn Reflect>>), )
#[reflect(setter = ..)]
or falls back to
Reflect::field_mut
fn as_array(&self, func: &mut dyn FnMut(Option<&(dyn ReflectArray + 'static)>))
fn as_array_mut( &mut self, func: &mut dyn FnMut(Option<&mut (dyn ReflectArray + 'static)>), )
fn as_list(&self, func: &mut dyn FnMut(Option<&(dyn ReflectList + 'static)>))
fn as_list_mut( &mut self, func: &mut dyn FnMut(Option<&mut (dyn ReflectList + 'static)>), )
fn as_inheritable_variable( &self, func: &mut dyn FnMut(Option<&(dyn ReflectInheritableVariable + 'static)>), )
fn as_inheritable_variable_mut( &mut self, func: &mut dyn FnMut(Option<&mut (dyn ReflectInheritableVariable + 'static)>), )
fn as_hash_map( &self, func: &mut dyn FnMut(Option<&(dyn ReflectHashMap + 'static)>), )
fn as_hash_map_mut( &mut self, func: &mut dyn FnMut(Option<&mut (dyn ReflectHashMap + 'static)>), )
Source§impl<T> RelativeEq for Quaternion<T>where
T: RealField<Epsilon = T> + RelativeEq,
impl<T> RelativeEq for Quaternion<T>where
T: RealField<Epsilon = T> + RelativeEq,
Source§fn default_max_relative() -> <Quaternion<T> as AbsDiffEq>::Epsilon
fn default_max_relative() -> <Quaternion<T> as AbsDiffEq>::Epsilon
Source§fn relative_eq(
&self,
other: &Quaternion<T>,
epsilon: <Quaternion<T> as AbsDiffEq>::Epsilon,
max_relative: <Quaternion<T> as AbsDiffEq>::Epsilon,
) -> bool
fn relative_eq( &self, other: &Quaternion<T>, epsilon: <Quaternion<T> as AbsDiffEq>::Epsilon, max_relative: <Quaternion<T> as AbsDiffEq>::Epsilon, ) -> bool
Source§fn relative_ne(
&self,
other: &Rhs,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon,
) -> bool
fn relative_ne( &self, other: &Rhs, epsilon: Self::Epsilon, max_relative: Self::Epsilon, ) -> bool
RelativeEq::relative_eq
.Source§impl<T> Serialize for Quaternion<T>
impl<T> Serialize for Quaternion<T>
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Source§impl<T> SimdValue for Quaternion<T>
impl<T> SimdValue for Quaternion<T>
Source§type Element = Quaternion<<T as SimdValue>::Element>
type Element = Quaternion<<T as SimdValue>::Element>
Source§type SimdBool = <T as SimdValue>::SimdBool
type SimdBool = <T as SimdValue>::SimdBool
self
.Source§fn splat(val: <Quaternion<T> as SimdValue>::Element) -> Quaternion<T>
fn splat(val: <Quaternion<T> as SimdValue>::Element) -> Quaternion<T>
val
.Source§fn extract(&self, i: usize) -> <Quaternion<T> as SimdValue>::Element
fn extract(&self, i: usize) -> <Quaternion<T> as SimdValue>::Element
self
. Read moreSource§unsafe fn extract_unchecked(
&self,
i: usize,
) -> <Quaternion<T> as SimdValue>::Element
unsafe fn extract_unchecked( &self, i: usize, ) -> <Quaternion<T> as SimdValue>::Element
self
without bound-checking. Read moreSource§unsafe fn replace_unchecked(
&mut self,
i: usize,
val: <Quaternion<T> as SimdValue>::Element,
)
unsafe fn replace_unchecked( &mut self, i: usize, val: <Quaternion<T> as SimdValue>::Element, )
Source§fn select(
self,
cond: <Quaternion<T> as SimdValue>::SimdBool,
other: Quaternion<T>,
) -> Quaternion<T>
fn select( self, cond: <Quaternion<T> as SimdValue>::SimdBool, other: Quaternion<T>, ) -> Quaternion<T>
Source§impl<'a, 'b, T> Sub<&'b Quaternion<T>> for &'a Quaternion<T>
impl<'a, 'b, T> Sub<&'b Quaternion<T>> for &'a Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
-
operator.Source§fn sub(
self,
rhs: &'b Quaternion<T>,
) -> <&'a Quaternion<T> as Sub<&'b Quaternion<T>>>::Output
fn sub( self, rhs: &'b Quaternion<T>, ) -> <&'a Quaternion<T> as Sub<&'b Quaternion<T>>>::Output
-
operation. Read moreSource§impl<'b, T> Sub<&'b Quaternion<T>> for Quaternion<T>
impl<'b, T> Sub<&'b Quaternion<T>> for Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
-
operator.Source§fn sub(
self,
rhs: &'b Quaternion<T>,
) -> <Quaternion<T> as Sub<&'b Quaternion<T>>>::Output
fn sub( self, rhs: &'b Quaternion<T>, ) -> <Quaternion<T> as Sub<&'b Quaternion<T>>>::Output
-
operation. Read moreSource§impl<'a, T> Sub<Quaternion<T>> for &'a Quaternion<T>
impl<'a, T> Sub<Quaternion<T>> for &'a Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
-
operator.Source§fn sub(
self,
rhs: Quaternion<T>,
) -> <&'a Quaternion<T> as Sub<Quaternion<T>>>::Output
fn sub( self, rhs: Quaternion<T>, ) -> <&'a Quaternion<T> as Sub<Quaternion<T>>>::Output
-
operation. Read moreSource§impl<T> Sub for Quaternion<T>
impl<T> Sub for Quaternion<T>
Source§type Output = Quaternion<T>
type Output = Quaternion<T>
-
operator.Source§fn sub(self, rhs: Quaternion<T>) -> <Quaternion<T> as Sub>::Output
fn sub(self, rhs: Quaternion<T>) -> <Quaternion<T> as Sub>::Output
-
operation. Read moreSource§impl<'b, T> SubAssign<&'b Quaternion<T>> for Quaternion<T>
impl<'b, T> SubAssign<&'b Quaternion<T>> for Quaternion<T>
Source§fn sub_assign(&mut self, rhs: &'b Quaternion<T>)
fn sub_assign(&mut self, rhs: &'b Quaternion<T>)
-=
operation. Read moreSource§impl<T> SubAssign for Quaternion<T>
impl<T> SubAssign for Quaternion<T>
Source§fn sub_assign(&mut self, rhs: Quaternion<T>)
fn sub_assign(&mut self, rhs: Quaternion<T>)
-=
operation. Read moreSource§impl<T1, T2> SubsetOf<Quaternion<T2>> for Quaternion<T1>
impl<T1, T2> SubsetOf<Quaternion<T2>> for Quaternion<T1>
Source§fn to_superset(&self) -> Quaternion<T2>
fn to_superset(&self) -> Quaternion<T2>
self
to the equivalent element of its superset.Source§fn is_in_subset(q: &Quaternion<T2>) -> bool
fn is_in_subset(q: &Quaternion<T2>) -> bool
element
is actually part of the subset Self
(and can be converted to it).Source§fn from_superset_unchecked(q: &Quaternion<T2>) -> Quaternion<T1>
fn from_superset_unchecked(q: &Quaternion<T2>) -> Quaternion<T1>
self.to_superset
but without any property checks. Always succeeds.Source§impl<T> UlpsEq for Quaternion<T>
impl<T> UlpsEq for Quaternion<T>
Source§fn default_max_ulps() -> u32
fn default_max_ulps() -> u32
Source§fn ulps_eq(
&self,
other: &Quaternion<T>,
epsilon: <Quaternion<T> as AbsDiffEq>::Epsilon,
max_ulps: u32,
) -> bool
fn ulps_eq( &self, other: &Quaternion<T>, epsilon: <Quaternion<T> as AbsDiffEq>::Epsilon, max_ulps: u32, ) -> bool
Source§impl<T> Zero for Quaternion<T>
impl<T> Zero for Quaternion<T>
Source§impl<T> Zeroable for Quaternion<T>
impl<T> Zeroable for Quaternion<T>
Source§impl<T> Deref for Quaternion<T>
impl<T> Deref for Quaternion<T>
impl<T> Copy for Quaternion<T>where
T: Copy,
impl<T> Eq for Quaternion<T>
impl<T> Pod for Quaternion<T>
Auto Trait Implementations§
impl<T> Freeze for Quaternion<T>where
T: Freeze,
impl<T> RefUnwindSafe for Quaternion<T>where
T: RefUnwindSafe,
impl<T> Send for Quaternion<T>where
T: Send,
impl<T> Sync for Quaternion<T>where
T: Sync,
impl<T> Unpin for Quaternion<T>where
T: Unpin,
impl<T> UnwindSafe for Quaternion<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> AsyncTaskResult for T
impl<T> AsyncTaskResult for T
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern
.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
bits
as &Self
.Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Any
. Could be used to downcast a trait object
to a particular type.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Any
. Could be used to downcast a trait object
to a particular type.fn into_any(self: Box<T>) -> Box<dyn Any>
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> FieldValue for Twhere
T: 'static,
impl<T> FieldValue for Twhere
T: 'static,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> MessageData for T
impl<T> MessageData for T
Source§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<R, P> ReadPrimitive<R> for P
impl<R, P> ReadPrimitive<R> for P
Source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
ReadEndian::read_from_little_endian()
.Source§impl<T> ReflectBase for Twhere
T: Reflect,
impl<T> ReflectBase for Twhere
T: Reflect,
fn as_any_raw(&self) -> &(dyn Any + 'static)
fn as_any_raw_mut(&mut self) -> &mut (dyn Any + 'static)
Source§impl<T> ResolvePath for Twhere
T: Reflect,
impl<T> ResolvePath for Twhere
T: Reflect,
fn resolve_path<'p>( &self, path: &'p str, func: &mut dyn FnMut(Result<&(dyn Reflect + 'static), ReflectPathError<'p>>), )
fn resolve_path_mut<'p>( &mut self, path: &'p str, func: &mut dyn FnMut(Result<&mut (dyn Reflect + 'static), ReflectPathError<'p>>), )
fn get_resolve_path<'p, T>(
&self,
path: &'p str,
func: &mut dyn FnMut(Result<&T, ReflectPathError<'p>>),
)where
T: Reflect,
fn get_resolve_path_mut<'p, T>(
&mut self,
path: &'p str,
func: &mut dyn FnMut(Result<&mut T, ReflectPathError<'p>>),
)where
T: Reflect,
Source§impl<T> ScriptMessagePayload for T
impl<T> ScriptMessagePayload for T
Source§fn as_any_ref(&self) -> &(dyn Any + 'static)
fn as_any_ref(&self) -> &(dyn Any + 'static)
self
as &dyn Any
Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
self
as &dyn Any
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.