#[repr(C)]
pub struct Quat(_);

Implementations

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.

Creates a rotation quaternion from an unaligned &[f32].

Preconditions

The resulting quaternion is expected to be of unit length.

Panics

Panics if slice length is less than 4.

Writes the quaternion to an unaligned &mut [f32].

Panics

Panics if slice length is less than 4.

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

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

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

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

Create a quaternion from the given yaw (around y), pitch (around x) and roll (around z) in radians.

Creates a quaternion from a 3x3 rotation matrix.

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

Returns the rotation axis and angle of self.

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

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

Computes the length of self.

Computes the squared length of self.

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

Computes 1.0 / Quat::length().

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

Returns self normalized to length 1.0.

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

Returns whether self of length 1.0 or not.

Uses a precision threshold of 1e-6.

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

This can be used to compare if two Quat’s 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 on floating point comparisons see https://randomascii.wordpress.com/2012/02/25/comparing-floating-point-numbers-2012-edition/

Performs a linear interpolation between self and other 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 other.

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.

Note that a rotation can be represented by two quaternions: q and -q. The slerp path between q and end will be different from the path between -q and end. One path will take the long way around and one will take the short way. In order to correct for this, the dot product between self and end should be positive. If the dot product is negative, slerp between -self and end.

Multiplies a quaternion and a 3D vector, rotating it.

Multiplies a quaternion and a 3D vector, rotating it.

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.

👎Deprecated since 0.10.0:

please use .x instead

👎Deprecated since 0.10.0:

please use .y instead

👎Deprecated since 0.10.0:

please use .z instead

👎Deprecated since 0.10.0:

please use .w instead

Trait Implementations

Adds two quaternions. The sum is not guaranteed to be normalized.

NB: Addition is not the same as combining the rotations represented by the two quaternions! That corresponds to multiplication.

The resulting type after applying the + operator.

Converts this type into a mutable reference of the (usually inferred) input type.

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

The resulting type after dereferencing.

Dereferences the value.

Formats the value using the given formatter. Read more

Divides a quaternion by an f32. The quotient is not guaranteed to be normalized.

The resulting type after applying the / operator.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

Converts to this type from the input type.

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

The resulting type after applying the * operator.

Performs the * operation. Read more

Multiplies a quaternion with an f32. The product is not guaranteed to be normalized.

The resulting type after applying the * operator.

Performs the *= operation. Read more

The resulting type after applying the - operator.

Performs the unary - operation. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Method which takes an iterator and generates Self from the elements by multiplying the items. Read more

Subtracts the other quaternion from self. The difference is not guaranteed to be normalized.

The resulting type after applying the - operator.

Method which takes an iterator and generates Self from the elements by “summing up” the items. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

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

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.