Struct macroquad::math::Quat [−][src]
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.
This type is 16 byte aligned.
Implementations
impl Quat[src]
pub const IDENTITY: Quat[src]
The identity quaternion. Corresponds to no rotation.
pub fn from_xyzw(x: f32, y: f32, z: f32, w: f32) -> Quat[src]
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.
pub const fn identity() -> Quat[src]
use Quat::IDENTITY instead
pub fn from_slice_unaligned(slice: &[f32]) -> Quat[src]
Creates a rotation quaternion from an unaligned slice.
Preconditions
The resulting quaternion is expected to be of unit length.
Panics
Panics if slice length is less than 4.
pub fn write_to_slice_unaligned(self, slice: &mut [f32])[src]
pub fn from_axis_angle(axis: Vec3, angle: f32) -> Quat[src]
Create a quaternion for a normalized rotation axis and angle (in radians).
The axis must be normalized (unit-length).
pub fn from_scaled_axis(v: Vec3) -> Quat[src]
Create a quaternion that rotates v.length() radians around v.normalize().
from_scaled_axis(Vec3::ZERO) results in the identity quaternion.
pub fn from_rotation_x(angle: f32) -> Quat[src]
Creates a quaternion from the angle (in radians) around the x axis.
pub fn from_rotation_y(angle: f32) -> Quat[src]
Creates a quaternion from the angle (in radians) around the y axis.
pub fn from_rotation_z(angle: f32) -> Quat[src]
Creates a quaternion from the angle (in radians) around the z axis.
pub fn from_rotation_ypr(yaw: f32, pitch: f32, roll: f32) -> Quat[src]
Create a quaternion from the given yaw (around y), pitch (around x) and roll (around z) in radians.
pub fn from_rotation_mat3(mat: &Mat3) -> Quat[src]
Creates a quaternion from a 3x3 rotation matrix.
pub fn from_rotation_mat4(mat: &Mat4) -> Quat[src]
Creates a quaternion from a 3x3 rotation matrix inside a homogeneous 4x4 matrix.
pub fn from_rotation_arc(from: Vec3, to: Vec3) -> Quat[src]
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 input vectors must be normalized (unit-length).
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).
pub fn from_rotation_arc_colinear(from: Vec3, to: Vec3) -> Quat[src]
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 input vectors must be normalized (unit-length).
to.dot(from_rotation_arc_colinear(from, to) * from).abs() ≈ 1.
pub fn to_axis_angle(self) -> (Vec3, f32)[src]
Returns the rotation axis and angle (in radians) of self.
pub fn to_scaled_axis(self) -> Vec3[src]
Returns the rotation axis scaled by the rotation in radians.
pub fn conjugate(self) -> Quat[src]
Returns the quaternion conjugate of self. For a unit quaternion the
conjugate is also the inverse.
pub fn inverse(self) -> Quat[src]
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.
pub fn dot(self, other: Quat) -> f32[src]
Computes the dot product of self and other. The dot product is
equal to the the cosine of the angle between two quaternion rotations.
pub fn length(self) -> f32[src]
Computes the length of self.
pub fn length_squared(self) -> f32[src]
Computes the squared length of self.
This is generally faster than length() as it avoids a square
root operation.
pub fn length_recip(self) -> f32[src]
Computes 1.0 / length().
For valid results, self must not be of length zero.
pub fn normalize(self) -> Quat[src]
Returns self normalized to length 1.0.
For valid results, self must not be of length zero.
pub fn is_finite(self) -> bool[src]
Returns true if, and only if, all elements are finite.
If any element is either NaN, positive or negative infinity, this will return false.
pub fn is_nan(self) -> bool[src]
pub fn is_normalized(self) -> bool[src]
Returns whether self of length 1.0 or not.
Uses a precision threshold of 1e-6.
pub fn is_near_identity(self) -> bool[src]
pub fn angle_between(self, other: Quat) -> f32[src]
Returns the angle (in radians) for the minimal rotation for transforming this quaternion into another.
Both quaternions must be normalized.
pub fn abs_diff_eq(self, other: Quat, max_abs_diff: f32) -> bool[src]
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 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.
pub fn lerp(self, end: Quat, s: f32) -> Quat[src]
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.
pub fn slerp(self, end: Quat, s: f32) -> Quat[src]
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.
pub fn mul_vec3(self, other: Vec3) -> Vec3[src]
Multiplies a quaternion and a 3D vector, returning the rotated vector.
pub fn mul_quat(self, other: Quat) -> Quat[src]
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.
pub fn mul_vec3a(self, other: Vec3A) -> Vec3A[src]
Multiplies a quaternion and a 3D vector, returning the rotated vector.
pub fn as_f64(self) -> DQuat[src]
Trait Implementations
impl Add<Quat> for Quat[src]
type Output = Quat
The resulting type after applying the + operator.
pub fn add(self, other: Quat) -> Quat[src]
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.
impl AsMut<[f32; 4]> for Quat[src]
impl AsRef<[f32; 4]> for Quat[src]
impl Clone for Quat[src]
impl Copy for Quat[src]
impl Debug for Quat[src]
impl Default for Quat[src]
impl Deref for Quat[src]
type Target = XYZW<f32>
The resulting type after dereferencing.
pub fn deref(&self) -> &<Quat as Deref>::Target[src]
impl Display for Quat[src]
impl Div<f32> for Quat[src]
type Output = Quat
The resulting type after applying the / operator.
pub fn div(self, other: f32) -> Quat[src]
Divides a quaternion by a scalar value. The quotient is not guaranteed to be normalized.
impl From<[f32; 4]> for Quat[src]
impl From<(f32, f32, f32, f32)> for Quat[src]
impl From<Quat> for XYZW<f32>[src]
impl From<Quat> for Vec4[src]
impl From<Vec4> for Quat[src]
impl From<XYZW<f32>> for Quat[src]
impl Mul<Quat> for Quat[src]
type Output = Quat
The resulting type after applying the * operator.
pub fn mul(self, other: Quat) -> Quat[src]
impl Mul<Vec3> for Quat[src]
type Output = Vec3
The resulting type after applying the * operator.
pub fn mul(self, other: Vec3) -> <Quat as Mul<Vec3>>::Output[src]
impl Mul<Vec3A> for Quat[src]
type Output = Vec3A
The resulting type after applying the * operator.
pub fn mul(self, other: Vec3A) -> <Quat as Mul<Vec3A>>::Output[src]
impl Mul<f32> for Quat[src]
type Output = Quat
The resulting type after applying the * operator.
pub fn mul(self, other: f32) -> Quat[src]
Multiplies a quaternion by a scalar value. The product is not guaranteed to be normalized.
impl MulAssign<Quat> for Quat[src]
pub fn mul_assign(&mut self, other: Quat)[src]
impl Neg for Quat[src]
impl PartialEq<Quat> for Quat[src]
pub fn eq(&self, other: &Quat) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialOrd<Quat> for Quat[src]
pub fn partial_cmp(&self, other: &Quat) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl<'a> Product<&'a Quat> for Quat[src]
impl Sub<Quat> for Quat[src]
type Output = Quat
The resulting type after applying the - operator.
pub fn sub(self, other: Quat) -> Quat[src]
Subtracts the other quaternion from self. The difference is not guaranteed to be normalized.
impl<'a> Sum<&'a Quat> for Quat[src]
Auto Trait Implementations
impl RefUnwindSafe for Quat
impl Send for Quat
impl Sync for Quat
impl Unpin for Quat
impl UnwindSafe for Quat
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,