//! These are the base mathematical types, which are then abstracted by more usable types.
pubmodmatrix;pubmodquaternion;pubmodvector;usecore::f32;pubusematrix::*;pubusequaternion::*;pubusevector::*;#[inline(always)]/// Calculate if two floats are equal to each other with a given `epsilon`.
pubfnnearly_equal(lhs:f32, rhs:f32, epsilon:f32)->bool{(rhs - lhs).abs()< epsilon }