DQuat

Struct DQuat 

Source
#[repr(C)]
pub struct DQuat { pub x: f64, pub y: f64, pub z: f64, pub w: f64, }
Expand description

A quaternion representing an orientation.

This quaternion is intended to be of unit length but may denormalize due to floating point โ€œerror creepโ€ which can occur when successive quaternion operations are applied.

Fieldsยง

ยงx: f64ยงy: f64ยงz: f64ยงw: f64

Implementationsยง

Sourceยง

impl DQuat

Source

pub const IDENTITY: DQuat

The identity quaternion. Corresponds to no rotation.

Source

pub const NAN: DQuat

All NANs.

Source

pub const fn from_xyzw(x: f64, y: f64, z: f64, w: f64) -> DQuat

Creates a new rotation quaternion.

This should generally not be called manually unless you know what you are doing. Use one of the other constructors instead such as identity or from_axis_angle.

from_xyzw is mostly used by unit tests and serde deserialization.

ยงPreconditions

This function does not check if the input is normalized, it is up to the user to provide normalized input or to normalized the resulting quaternion.

Source

pub const fn from_array(a: [f64; 4]) -> DQuat

Creates a rotation quaternion from an array.

ยงPreconditions

This function does not check if the input is normalized, it is up to the user to provide normalized input or to normalized the resulting quaternion.

Source

pub fn from_vec4(v: DVec4) -> DQuat

Creates a new rotation quaternion from a 4D vector.

ยงPreconditions

This function does not check if the input is normalized, it is up to the user to provide normalized input or to normalized the resulting quaternion.

Source

pub fn from_slice(slice: &[f64]) -> DQuat

Creates a rotation quaternion from a slice.

ยงPreconditions

This function does not check if the input is normalized, it is up to the user to provide normalized input or to normalized the resulting quaternion.

ยงPanics

Panics if slice length is less than 4.

Source

pub fn write_to_slice(self, slice: &mut [f64])

Writes the quaternion to an unaligned slice.

ยงPanics

Panics if slice length is less than 4.

Source

pub fn from_axis_angle(axis: DVec3, angle: f64) -> DQuat

Create a quaternion for a normalized rotation axis and angle (in radians).

The axis must be a unit vector.

ยงPanics

Will panic if axis is not normalized when glam_assert is enabled.

Source

pub fn from_scaled_axis(v: DVec3) -> DQuat

Create a quaternion that rotates v.length() radians around v.normalize().

from_scaled_axis(Vec3::ZERO) results in the identity quaternion.

Source

pub fn from_rotation_x(angle: f64) -> DQuat

Creates a quaternion from the angle (in radians) around the x axis.

Source

pub fn from_rotation_y(angle: f64) -> DQuat

Creates a quaternion from the angle (in radians) around the y axis.

Source

pub fn from_rotation_z(angle: f64) -> DQuat

Creates a quaternion from the angle (in radians) around the z axis.

Source

pub fn from_euler(euler: EulerRot, a: f64, b: f64, c: f64) -> DQuat

Creates a quaternion from the given Euler rotation sequence and the angles (in radians).

Source

pub fn from_mat3(mat: &DMat3) -> DQuat

Creates a quaternion from a 3x3 rotation matrix.

Source

pub fn from_mat4(mat: &DMat4) -> DQuat

Creates a quaternion from a 3x3 rotation matrix inside a homogeneous 4x4 matrix.

Source

pub fn from_rotation_arc(from: DVec3, to: DVec3) -> DQuat

Gets the minimal rotation for transforming from to to. The rotation is in the plane spanned by the two vectors. Will rotate at most 180 degrees.

The inputs must be unit vectors.

from_rotation_arc(from, to) * from โ‰ˆ to.

For near-singular cases (fromโ‰ˆto and fromโ‰ˆ-to) the current implementation is only accurate to about 0.001 (for f32).

ยงPanics

Will panic if from or to are not normalized when glam_assert is enabled.

Source

pub fn from_rotation_arc_colinear(from: DVec3, to: DVec3) -> DQuat

Gets the minimal rotation for transforming from to either to or -to. This means that the resulting quaternion will rotate from so that it is colinear with to.

The rotation is in the plane spanned by the two vectors. Will rotate at most 90 degrees.

The inputs must be unit vectors.

to.dot(from_rotation_arc_colinear(from, to) * from).abs() โ‰ˆ 1.

ยงPanics

Will panic if from or to are not normalized when glam_assert is enabled.

Source

pub fn from_rotation_arc_2d(from: DVec2, to: DVec2) -> DQuat

Gets the minimal rotation for transforming from to to. The resulting rotation is around the z axis. Will rotate at most 180 degrees.

The inputs must be unit vectors.

from_rotation_arc_2d(from, to) * from โ‰ˆ to.

For near-singular cases (fromโ‰ˆto and fromโ‰ˆ-to) the current implementation is only accurate to about 0.001 (for f32).

ยงPanics

Will panic if from or to are not normalized when glam_assert is enabled.

Source

pub fn to_axis_angle(self) -> (DVec3, f64)

Returns the rotation axis (normalized) and angle (in radians) of self.

Source

pub fn to_scaled_axis(self) -> DVec3

Returns the rotation axis scaled by the rotation in radians.

Source

pub fn to_euler(self, euler: EulerRot) -> (f64, f64, f64)

Returns the rotation angles for the given euler rotation sequence.

Source

pub fn to_array(&self) -> [f64; 4]

[x, y, z, w]

Source

pub fn xyz(self) -> DVec3

Returns the vector part of the quaternion.

Source

pub fn conjugate(self) -> DQuat

Returns the quaternion conjugate of self. For a unit quaternion the conjugate is also the inverse.

Source

pub fn inverse(self) -> DQuat

Returns the inverse of a normalized quaternion.

Typically quaternion inverse returns the conjugate of a normalized quaternion. Because self is assumed to already be unit length this method does not normalize before returning the conjugate.

ยงPanics

Will panic if self is not normalized when glam_assert is enabled.

Source

pub fn dot(self, rhs: DQuat) -> f64

Computes the dot product of self and rhs. The dot product is equal to the cosine of the angle between two quaternion rotations.

Source

pub fn length(self) -> f64

Computes the length of self.

Source

pub fn length_squared(self) -> f64

Computes the squared length of self.

This is generally faster than length() as it avoids a square root operation.

Source

pub fn length_recip(self) -> f64

Computes 1.0 / length().

For valid results, self must not be of length zero.

Source

pub fn normalize(self) -> DQuat

Returns self normalized to length 1.0.

For valid results, self must not be of length zero.

Panics

Will panic if self is zero length when glam_assert is enabled.

Source

pub fn is_finite(self) -> bool

Returns true if, and only if, all elements are finite. If any element is either NaN, positive or negative infinity, this will return false.

Source

pub fn is_nan(self) -> bool

Source

pub fn is_normalized(self) -> bool

Returns whether self of length 1.0 or not.

Uses a precision threshold of 1e-6.

Source

pub fn is_near_identity(self) -> bool

Source

pub fn angle_between(self, rhs: DQuat) -> f64

Returns the angle (in radians) for the minimal rotation for transforming this quaternion into another.

Both quaternions must be normalized.

ยงPanics

Will panic if self or rhs are not normalized when glam_assert is enabled.

Source

pub fn abs_diff_eq(self, rhs: DQuat, max_abs_diff: f64) -> bool

Returns true if the absolute difference of all elements between self and rhs is less than or equal to max_abs_diff.

This can be used to compare if two quaternions contain similar elements. It works best when comparing with a known value. The max_abs_diff that should be used used depends on the values being compared against.

For more see comparing floating point numbers.

Source

pub fn lerp(self, end: DQuat, s: f64) -> DQuat

Performs a linear interpolation between self and rhs based on the value s.

When s is 0.0, the result will be equal to self. When s is 1.0, the result will be equal to rhs.

ยงPanics

Will panic if self or end are not normalized when glam_assert is enabled.

Source

pub fn slerp(self, end: DQuat, s: f64) -> DQuat

Performs a spherical linear interpolation between self and end based on the value s.

When s is 0.0, the result will be equal to self. When s is 1.0, the result will be equal to end.

ยงPanics

Will panic if self or end are not normalized when glam_assert is enabled.

Source

pub fn mul_vec3(self, rhs: DVec3) -> DVec3

Multiplies a quaternion and a 3D vector, returning the rotated vector.

ยงPanics

Will panic if self is not normalized when glam_assert is enabled.

Source

pub fn mul_quat(self, rhs: DQuat) -> DQuat

Multiplies two quaternions. If they each represent a rotation, the result will represent the combined rotation.

Note that due to floating point rounding the result may not be perfectly normalized.

ยงPanics

Will panic if self or rhs are not normalized when glam_assert is enabled.

Source

pub fn from_affine3(a: &DAffine3) -> DQuat

Creates a quaternion from a 3x3 rotation matrix inside a 3D affine transform.

Source

pub fn as_f32(self) -> Quat

Trait Implementationsยง

Sourceยง

impl Add for DQuat

Sourceยง

fn add(self, rhs: DQuat) -> DQuat

Adds two quaternions.

The sum is not guaranteed to be normalized.

Note that addition is not the same as combining the rotations represented by the two quaternions! That corresponds to multiplication.

Sourceยง

type Output = DQuat

The resulting type after applying the + operator.
Sourceยง

impl AsRef<[f64; 4]> for DQuat

Available on non-target_arch=spirv only.
Sourceยง

fn as_ref(&self) -> &[f64; 4]

Converts this type into a shared reference of the (usually inferred) input type.
Sourceยง

impl Clone for DQuat

Sourceยง

fn clone(&self) -> DQuat

Returns a duplicate of the value. Read more
1.0.0ยง

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Sourceยง

impl Debug for DQuat

Available on non-target_arch=spirv only.
Sourceยง

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl Default for DQuat

Sourceยง

fn default() -> DQuat

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

impl Display for DQuat

Available on non-target_arch=spirv only.
Sourceยง

fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Sourceยง

impl Div<f64> for DQuat

Sourceยง

fn div(self, rhs: f64) -> DQuat

Divides a quaternion by a scalar value. The quotient is not guaranteed to be normalized.

Sourceยง

type Output = DQuat

The resulting type after applying the / operator.
Sourceยง

impl From<DQuat> for DVec4

Sourceยง

fn from(q: DQuat) -> DVec4

Converts to this type from the input type.
Sourceยง

impl Mul<DVec3> for DQuat

Sourceยง

fn mul(self, rhs: DVec3) -> <DQuat as Mul<DVec3>>::Output

Multiplies a quaternion and a 3D vector, returning the rotated vector.

ยงPanics

Will panic if self is not normalized when glam_assert is enabled.

Sourceยง

type Output = DVec3

The resulting type after applying the * operator.
Sourceยง

impl Mul<f64> for DQuat

Sourceยง

fn mul(self, rhs: f64) -> DQuat

Multiplies a quaternion by a scalar value.

The product is not guaranteed to be normalized.

Sourceยง

type Output = DQuat

The resulting type after applying the * operator.
Sourceยง

impl Mul for DQuat

Sourceยง

fn mul(self, rhs: DQuat) -> DQuat

Multiplies two quaternions. If they each represent a rotation, the result will represent the combined rotation.

Note that due to floating point rounding the result may not be perfectly normalized.

ยงPanics

Will panic if self or rhs are not normalized when glam_assert is enabled.

Sourceยง

type Output = DQuat

The resulting type after applying the * operator.
Sourceยง

impl MulAssign for DQuat

Sourceยง

fn mul_assign(&mut self, rhs: DQuat)

Multiplies two quaternions. If they each represent a rotation, the result will represent the combined rotation.

Note that due to floating point rounding the result may not be perfectly normalized.

ยงPanics

Will panic if self or rhs are not normalized when glam_assert is enabled.

Sourceยง

impl Neg for DQuat

Sourceยง

type Output = DQuat

The resulting type after applying the - operator.
Sourceยง

fn neg(self) -> DQuat

Performs the unary - operation. Read more
Sourceยง

impl PartialEq for DQuat

Sourceยง

fn eq(&self, rhs: &DQuat) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0ยง

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Sourceยง

impl<'a> Product<&'a DQuat> for DQuat

Sourceยง

fn product<I>(iter: I) -> DQuat
where I: Iterator<Item = &'a DQuat>,

Takes an iterator and generates Self from the elements by multiplying the items.
Sourceยง

impl Product for DQuat

Sourceยง

fn product<I>(iter: I) -> DQuat
where I: Iterator<Item = DQuat>,

Takes an iterator and generates Self from the elements by multiplying the items.
Sourceยง

impl Sub for DQuat

Sourceยง

fn sub(self, rhs: DQuat) -> DQuat

Subtracts the rhs quaternion from self.

The difference is not guaranteed to be normalized.

Sourceยง

type Output = DQuat

The resulting type after applying the - operator.
Sourceยง

impl<'a> Sum<&'a DQuat> for DQuat

Sourceยง

fn sum<I>(iter: I) -> DQuat
where I: Iterator<Item = &'a DQuat>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
Sourceยง

impl Sum for DQuat

Sourceยง

fn sum<I>(iter: I) -> DQuat
where I: Iterator<Item = DQuat>,

Takes an iterator and generates Self from the elements by โ€œsumming upโ€ the items.
Sourceยง

impl Copy for DQuat

Auto Trait Implementationsยง

Blanket Implementationsยง

ยง

impl<T> Any for T
where T: 'static + ?Sized,

ยง

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
ยง

impl<T> Borrow<T> for T
where T: ?Sized,

ยง

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
ยง

impl<T> BorrowMut<T> for T
where T: ?Sized,

ยง

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
ยง

impl<T> CloneToUninit for T
where T: Clone,

ยง

unsafe fn clone_to_uninit(&self, dest: *mut u8)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Sourceยง

impl<T> Downcast<T> for T

Sourceยง

impl<T> Downcast for T
where T: Any,

Sourceยง

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert 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>

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

Convert &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)

Convert &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> DowncastSync for T
where T: Any + Send + Sync,

Sourceยง

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
ยง

impl<T> From<T> for T

ยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T> Instrument for T

Sourceยง

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Sourceยง

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
ยง

impl<T, U> Into<U> for T
where U: From<T>,

ยง

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Sourceยง

impl<T> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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 more
Sourceยง

impl<T> Pointable for T

Sourceยง

const ALIGN: usize

The alignment of pointer.
Sourceยง

type Init = T

The type for initializers.
Sourceยง

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Sourceยง

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Sourceยง

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Sourceยง

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Sourceยง

impl<R, P> ReadPrimitive<R> for P
where R: Read + ReadEndian<P>, P: Default,

Sourceยง

fn read_from_little_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_little_endian().
Sourceยง

fn read_from_big_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian().
Sourceยง

fn read_from_native_endian(read: &mut R) -> Result<Self, Error>

Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian().
ยง

impl<T> ToOwned for T
where T: Clone,

ยง

type Owned = T

The resulting type after obtaining ownership.
ยง

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
ยง

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Sourceยง

impl<T> ToSmolStr for T
where T: Display + ?Sized,

ยง

impl<T> ToString for T
where T: Display + ?Sized,

ยง

fn to_string(&self) -> String

Converts the given value to a String. Read more
ยง

impl<T, U> TryFrom<U> for T
where U: Into<T>,

ยง

type Error = Infallible

The type returned in the event of a conversion error.
ยง

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
ยง

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

ยง

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

The type returned in the event of a conversion error.
ยง

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Sourceยง

impl<T> Upcast<T> for T

Sourceยง

impl<T> WithSubscriber for T

Sourceยง

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Sourceยง

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Sourceยง

impl<T> WasmNotSend for T
where T: Send,

Sourceยง

impl<T> WasmNotSendSync for T

Sourceยง

impl<T> WasmNotSync for T
where T: Sync,