//! Spatial math: rotations, Lie groups and spatial-algebra types.
use crateNumeric;
pub use ;
pub use Quaternion;
pub use Twist;
pub use Wrench;
/// The angle threshold below which trig ratios switch to their Taylor series, keeping values
/// finite and derivatives continuous. A fixed absolute cutoff (not `EPSILON`-relative); correct for
/// both f32 and f64.
pub
/// The squared small-angle threshold, for branches taken on a squared magnitude (θ², ‖v‖²) before
/// any `sqrt`. Branching pre-`sqrt` keeps the AD derivative finite at exactly zero, where `sqrt`'s
/// derivative is NaN.
pub