Struct rin::math::Quaternion[][src]

#[repr(C)]
pub struct Quaternion<N> where
    N: Scalar
{ pub coords: Matrix<N, U4, U1, <DefaultAllocator as Allocator<N, U4, U1>>::Buffer>, }

A quaternion. See the type alias UnitQuaternion = Unit<Quaternion> for a quaternion that may be used as a rotation.

Fields

coords: Matrix<N, U4, U1, <DefaultAllocator as Allocator<N, U4, U1>>::Buffer>

This quaternion as a 4D vector of coordinates in the [ x, y, z, w ] storage order.

Implementations

impl<N> Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

pub fn into_owned(self) -> Quaternion<N>[src]

👎 Deprecated:

This method is a no-op and will be removed in a future release.

Moves this unit quaternion into one that owns its data.

pub fn clone_owned(&self) -> Quaternion<N>[src]

👎 Deprecated:

This method is a no-op and will be removed in a future release.

Clones this unit quaternion into one that owns its data.

#[must_use = "Did you mean to use normalize_mut()?"]
pub fn normalize(&self) -> Quaternion<N>
[src]

Normalizes this quaternion.

Example

let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
let q_normalized = q.normalize();
relative_eq!(q_normalized.norm(), 1.0);

pub fn imag(
    &self
) -> Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>
[src]

The imaginary part of this quaternion.

#[must_use = "Did you mean to use conjugate_mut()?"]
pub fn conjugate(&self) -> Quaternion<N>
[src]

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);

pub fn lerp(&self, other: &Quaternion<N>, t: N) -> Quaternion<N>[src]

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));

pub fn vector(
    &self
) -> Matrix<N, U3, U1, SliceStorage<'_, N, U3, U1, <<DefaultAllocator as Allocator<N, U4, U1>>::Buffer as Storage<N, U4, U1>>::RStride, <<DefaultAllocator as Allocator<N, U4, U1>>::Buffer as Storage<N, U4, U1>>::CStride>>
[src]

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);

pub fn scalar(&self) -> N[src]

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);

pub fn as_vector(
    &self
) -> &Matrix<N, U4, U1, <DefaultAllocator as Allocator<N, U4, U1>>::Buffer>
[src]

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));

pub fn norm(&self) -> N[src]

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);

pub fn magnitude(&self) -> N[src]

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);

pub fn norm_squared(&self) -> N[src]

The squared norm of this quaternion.

Example

let q = Quaternion::new(1.0, 2.0, 3.0, 4.0);
assert_eq!(q.magnitude_squared(), 30.0);

pub fn magnitude_squared(&self) -> N[src]

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);

pub fn dot(&self, rhs: &Quaternion<N>) -> N[src]

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);

impl<N> Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

#[must_use = "Did you mean to use try_inverse_mut()?"]
pub fn try_inverse(&self) -> Option<Quaternion<N>> where
    N: RealField
[src]

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());

#[must_use = "Did you mean to use try_inverse_mut()?"]
pub fn simd_try_inverse(&self) -> SimdOption<Quaternion<N>>
[src]

Attempt to inverse this quaternion.

This method also works with SIMD components.

pub fn inner(&self, other: &Quaternion<N>) -> Quaternion<N>[src]

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);

pub fn outer(&self, other: &Quaternion<N>) -> Quaternion<N>[src]

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);

pub fn project(&self, other: &Quaternion<N>) -> Option<Quaternion<N>> where
    N: RealField
[src]

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);

pub fn reject(&self, other: &Quaternion<N>) -> Option<Quaternion<N>> where
    N: RealField
[src]

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);

pub fn polar_decomposition(
    &self
) -> (N, N, Option<Unit<Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>>>) where
    N: RealField
[src]

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()));

pub fn ln(&self) -> Quaternion<N>[src]

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)

pub fn exp(&self) -> Quaternion<N>[src]

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)

pub fn exp_eps(&self, eps: N) -> Quaternion<N>[src]

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());

pub fn powf(&self, n: N) -> Quaternion<N>[src]

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);

pub fn as_vector_mut(
    &mut self
) -> &mut Matrix<N, U4, U1, <DefaultAllocator as Allocator<N, U4, U1>>::Buffer>
[src]

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);

pub fn vector_mut(
    &mut self
) -> Matrix<N, U3, U1, SliceStorageMut<'_, N, U3, U1, <<DefaultAllocator as Allocator<N, U4, U1>>::Buffer as Storage<N, U4, U1>>::RStride, <<DefaultAllocator as Allocator<N, U4, U1>>::Buffer as Storage<N, U4, U1>>::CStride>>
[src]

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);

pub fn conjugate_mut(&mut self)[src]

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);

pub fn try_inverse_mut(&mut self) -> <N as SimdValue>::SimdBool[src]

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());

pub fn normalize_mut(&mut self) -> N[src]

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);

pub fn squared(&self) -> Quaternion<N>[src]

Calculates square of a quaternion.

pub fn half(&self) -> Quaternion<N>[src]

Divides quaternion into two.

pub fn sqrt(&self) -> Quaternion<N>[src]

Calculates square root.

pub fn is_pure(&self) -> bool[src]

Check if the quaternion is pure.

A quaternion is pure if it has no real part (self.w == 0.0).

pub fn pure(&self) -> Quaternion<N>[src]

Convert quaternion to pure quaternion.

pub fn left_div(&self, other: &Quaternion<N>) -> Option<Quaternion<N>> where
    N: RealField
[src]

Left quaternionic division.

Calculates B-1 * A where A = self, B = other.

pub fn right_div(&self, other: &Quaternion<N>) -> Option<Quaternion<N>> where
    N: RealField
[src]

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);

pub fn cos(&self) -> Quaternion<N>[src]

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);

pub fn acos(&self) -> Quaternion<N>[src]

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);

pub fn sin(&self) -> Quaternion<N>[src]

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);

pub fn asin(&self) -> Quaternion<N>[src]

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);

pub fn tan(&self) -> Quaternion<N> where
    N: RealField
[src]

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);

pub fn atan(&self) -> Quaternion<N> where
    N: RealField
[src]

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);

pub fn sinh(&self) -> Quaternion<N>[src]

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);

pub fn asinh(&self) -> Quaternion<N>[src]

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);

pub fn cosh(&self) -> Quaternion<N>[src]

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);

pub fn acosh(&self) -> Quaternion<N>[src]

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);

pub fn tanh(&self) -> Quaternion<N> where
    N: RealField
[src]

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);

pub fn atanh(&self) -> Quaternion<N>[src]

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);

impl<N> Quaternion<N> where
    N: Scalar
[src]

pub fn from_vector(
    vector: Matrix<N, U4, U1, <DefaultAllocator as Allocator<N, U4, U1>>::Buffer>
) -> Quaternion<N>
[src]

👎 Deprecated:

Use ::from instead.

Creates a quaternion from a 4D vector. The quaternion scalar part corresponds to the w vector component.

pub fn new(w: N, i: N, j: N, k: N) -> Quaternion<N>[src]

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));

impl<N> Quaternion<N> where
    N: SimdRealField
[src]

pub fn from_imag(
    vector: Matrix<N, U3, U1, <DefaultAllocator as Allocator<N, U3, U1>>::Buffer>
) -> Quaternion<N>
[src]

Constructs a pure quaternion.

pub fn from_parts<SB>(scalar: N, vector: Matrix<N, U3, U1, SB>) -> Quaternion<N> where
    SB: Storage<N, U3, U1>, 
[src]

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));

pub fn from_real(r: N) -> Quaternion<N>[src]

Constructs a real quaternion.

pub fn identity() -> Quaternion<N>[src]

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);

impl<N> Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

pub fn from_polar_decomposition<SB>(
    scale: N,
    theta: N,
    axis: Unit<Matrix<N, U3, U1, SB>>
) -> Quaternion<N> where
    SB: Storage<N, U3, U1>, 
[src]

Creates a new quaternion from its polar decomposition.

Note that axis is assumed to be a unit vector.

Trait Implementations

impl<N> AbsDiffEq<Quaternion<N>> for Quaternion<N> where
    N: RealField<Epsilon = N> + AbsDiffEq<N>, 
[src]

type Epsilon = N

Used for specifying relative comparisons.

impl<'b, N> Add<&'b Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the + operator.

impl<'a, 'b, N> Add<&'b Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the + operator.

impl<'a, N> Add<Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the + operator.

impl<N> Add<Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the + operator.

impl<'b, N> AddAssign<&'b Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

impl<N> AddAssign<Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

impl<N> Clone for Quaternion<N> where
    N: Clone + Scalar
[src]

impl<N> Debug for Quaternion<N> where
    N: Debug + Scalar
[src]

impl<N> Default for Quaternion<N> where
    N: Scalar + Zero
[src]

impl<N> Deref for Quaternion<N> where
    N: Scalar + SimdValue
[src]

type Target = IJKW<N>

The resulting type after dereferencing.

impl<N> DerefMut for Quaternion<N> where
    N: Scalar + SimdValue
[src]

impl<'a, N> Deserialize<'a> for Quaternion<N> where
    N: Scalar,
    <DefaultAllocator as Allocator<N, U4, U1>>::Buffer: Deserialize<'a>, 
[src]

impl<N> Display for Quaternion<N> where
    N: RealField + Display
[src]

impl<'a, N> Div<N> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

type Output = Quaternion<N>

The resulting type after applying the / operator.

impl<N> Div<N> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

type Output = Quaternion<N>

The resulting type after applying the / operator.

impl<N> DivAssign<N> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

impl<N> From<[N; 4]> for Quaternion<N> where
    N: Scalar
[src]

impl<N> From<[Quaternion<<N as SimdValue>::Element>; 16]> for Quaternion<N> where
    N: Scalar + PrimitiveSimdValue + From<[<N as SimdValue>::Element; 16]>,
    <N as SimdValue>::Element: Scalar,
    <N as SimdValue>::Element: Copy
[src]

impl<N> From<[Quaternion<<N as SimdValue>::Element>; 2]> for Quaternion<N> where
    N: Scalar + PrimitiveSimdValue + From<[<N as SimdValue>::Element; 2]>,
    <N as SimdValue>::Element: Scalar,
    <N as SimdValue>::Element: Copy
[src]

impl<N> From<[Quaternion<<N as SimdValue>::Element>; 4]> for Quaternion<N> where
    N: Scalar + PrimitiveSimdValue + From<[<N as SimdValue>::Element; 4]>,
    <N as SimdValue>::Element: Scalar,
    <N as SimdValue>::Element: Copy
[src]

impl<N> From<[Quaternion<<N as SimdValue>::Element>; 8]> for Quaternion<N> where
    N: Scalar + PrimitiveSimdValue + From<[<N as SimdValue>::Element; 8]>,
    <N as SimdValue>::Element: Scalar,
    <N as SimdValue>::Element: Copy
[src]

impl<N> From<Matrix<N, U4, U1, <DefaultAllocator as Allocator<N, U4, U1>>::Buffer>> for Quaternion<N> where
    N: Scalar
[src]

impl<N> Hash for Quaternion<N> where
    N: Hash + Scalar
[src]

impl<N> Index<usize> for Quaternion<N> where
    N: Scalar
[src]

type Output = N

The returned type after indexing.

impl<N> IndexMut<usize> for Quaternion<N> where
    N: Scalar
[src]

impl<'a, 'b, N> Mul<&'b Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the * operator.

impl<'b, N> Mul<&'b Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the * operator.

impl<'b> Mul<&'b Quaternion<f32>> for f32[src]

type Output = Quaternion<f32>

The resulting type after applying the * operator.

impl<N> Mul<N> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

type Output = Quaternion<N>

The resulting type after applying the * operator.

impl<'a, N> Mul<N> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

type Output = Quaternion<N>

The resulting type after applying the * operator.

impl<'a, N> Mul<Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the * operator.

impl<N> Mul<Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the * operator.

impl Mul<Quaternion<f32>> for f32[src]

type Output = Quaternion<f32>

The resulting type after applying the * operator.

impl<'b, N> MulAssign<&'b Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

impl<N> MulAssign<N> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

impl<N> MulAssign<Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

impl<N> Neg for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

type Output = Quaternion<N>

The resulting type after applying the - operator.

impl<'a, N> Neg for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

type Output = Quaternion<N>

The resulting type after applying the - operator.

impl<N> Normed for Quaternion<N> where
    N: SimdRealField
[src]

type Norm = <N as SimdComplexField>::SimdRealField

The type of the norm.

impl<N> One for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

impl<N> PartialEq<Quaternion<N>> for Quaternion<N> where
    N: PartialEq<N> + Scalar
[src]

impl<N> RelativeEq<Quaternion<N>> for Quaternion<N> where
    N: RealField<Epsilon = N> + RelativeEq<N>, 
[src]

impl<N> Serialize for Quaternion<N> where
    N: Scalar,
    <DefaultAllocator as Allocator<N, U4, U1>>::Buffer: Serialize
[src]

impl<N> SimdValue for Quaternion<N> where
    N: Scalar + SimdValue,
    <N as SimdValue>::Element: Scalar
[src]

type Element = Quaternion<<N as SimdValue>::Element>

The type of the elements of each lane of this SIMD value.

type SimdBool = <N as SimdValue>::SimdBool

Type of the result of comparing two SIMD values like self.

impl<'a, 'b, N> Sub<&'b Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the - operator.

impl<'b, N> Sub<&'b Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the - operator.

impl<N> Sub<Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the - operator.

impl<'a, N> Sub<Quaternion<N>> for &'a Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

type Output = Quaternion<N>

The resulting type after applying the - operator.

impl<'b, N> SubAssign<&'b Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

impl<N> SubAssign<Quaternion<N>> for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField,
    DefaultAllocator: Allocator<N, U4, U1>,
    DefaultAllocator: Allocator<N, U4, U1>, 
[src]

impl<N1, N2> SubsetOf<Quaternion<N2>> for Quaternion<N1> where
    N1: SimdRealField,
    N2: SimdRealField + SupersetOf<N1>, 
[src]

impl<N> UlpsEq<Quaternion<N>> for Quaternion<N> where
    N: RealField<Epsilon = N> + UlpsEq<N>, 
[src]

impl<N> Zero for Quaternion<N> where
    N: SimdRealField,
    <N as SimdValue>::Element: SimdRealField
[src]

impl<N> Copy for Quaternion<N> where
    N: Copy + Scalar
[src]

impl<N> Eq for Quaternion<N> where
    N: Eq + Scalar
[src]

impl<N> StructuralEq for Quaternion<N> where
    N: Scalar
[src]

impl<N> StructuralPartialEq for Quaternion<N> where
    N: Scalar
[src]

Auto Trait Implementations

impl<N> RefUnwindSafe for Quaternion<N> where
    N: RefUnwindSafe

impl<N> Send for Quaternion<N> where
    N: Send

impl<N> Sync for Quaternion<N> where
    N: Sync

impl<N> Unpin for Quaternion<N> where
    N: Unpin

impl<N> UnwindSafe for Quaternion<N> where
    N: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CallHasher for T where
    T: Hash
[src]

impl<T> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Any + Send + Sync
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoPnt<Point<T, U2>> for T where
    T: Scalar
[src]

impl<T> IntoPnt<Point<T, U3>> for T where
    T: Scalar
[src]

impl<T> IntoPnt<Point<T, U4>> for T where
    T: Scalar
[src]

impl<V> IntoPnt<V> for V[src]

impl<V> IntoVec<V> for V[src]

impl<T> JoinPnt<T, Point<T, U2>> for T where
    T: Scalar
[src]

type Output = Point<T, U3>

impl<T> JoinPnt<T, Point<T, U3>> for T where
    T: Scalar
[src]

type Output = Point<T, U4>

impl<T> JoinPnt<T, T> for T where
    T: Scalar
[src]

type Output = Point<T, U2>

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

impl<T> Serialize for T where
    T: Serialize + ?Sized
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T, Right> ClosedAdd<Right> for T where
    T: Add<Right, Output = T> + AddAssign<Right>, 
[src]

impl<T, Right> ClosedAdd<Right> for T where
    T: Add<Right, Output = T> + AddAssign<Right>, 
[src]

impl<T, Right> ClosedDiv<Right> for T where
    T: Div<Right, Output = T> + DivAssign<Right>, 
[src]

impl<T, Right> ClosedDiv<Right> for T where
    T: Div<Right, Output = T> + DivAssign<Right>, 
[src]

impl<T, Right> ClosedMul<Right> for T where
    T: Mul<Right, Output = T> + MulAssign<Right>, 
[src]

impl<T, Right> ClosedMul<Right> for T where
    T: Mul<Right, Output = T> + MulAssign<Right>, 
[src]

impl<T> ClosedNeg for T where
    T: Neg<Output = T>, 
[src]

impl<T> ClosedNeg for T where
    T: Neg<Output = T>, 
[src]

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 
[src]

impl<T, Right> ClosedSub<Right> for T where
    T: Sub<Right, Output = T> + SubAssign<Right>, 
[src]

impl<T> CollisionObjectHandle for T where
    T: 'static + Copy + Hash + PartialEq<T> + Eq + Send + Sync
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Slottable for T where
    T: Copy
[src]