Type Alias Quaternion

Source
pub type Quaternion = Quat;
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.

SIMD vector types are used for storage on supported platforms.

This type is 16 byte aligned.

Aliased Type§

struct Quaternion(/* private fields */);