1//! A bunch of linear algebra that is shared between platform implementations
2//! and used to compute and interpolate 3D transforms.
34mod geometry;
5pub mod inter;
6mod transform;
78#[cfg(test)]
9mod tests;
1011pub use geometry::{Point3D, Quaternion3D};
12pub use transform::Transform3D;