glamx/rot3.rs
1//! 3D rotation types (re-exported from glam).
2//!
3//! This module provides type aliases for glam's quaternion types for consistency
4//! with the naming convention used by other types in this crate.
5
6/// A 3D rotation represented as a unit quaternion (f32 precision).
7///
8/// This is a direct re-export of `glam::Quat`.
9pub type Rot3 = glam::Quat;
10
11/// A 3D rotation represented as a unit quaternion (f64 precision).
12///
13/// This is a direct re-export of `glam::DQuat`.
14pub type DRot3 = glam::DQuat;