Skip to main content

QuatU

Type Alias QuatU 

Source
pub type QuatU<T> = Quaternion<T, Unaligned>;
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.

§No SIMD Alignment

This type is not SIMD-aligned and has the memory layout of [T; 4].

Aliased Type§

pub struct QuatU<T>(/* private fields */);