//!
//! Mathematical types used throughout the library
//!
//! This module defines commonly used mathematical types such as vectors, matrices, and quaternions using the `numeris` crate.
//! These types are used for representing positions, velocities, orientations, and other mathematical constructs in the library.
//!
pub type Quaternion = Quaternion;
pub type Vector<const T: usize> = Vector;
pub type Matrix<const M: usize, const N: usize> = Matrix;
pub type Vector6 = ;
pub type Vector3 = ;
pub type Vector2 = ;
pub type Matrix3 = ;
pub type Matrix6 = ;
pub type Matrix67 = ;
pub type DMatrix<T> = DynMatrix;