sp2/lib.rs
1#![deny(missing_docs)]
2/*!
3# SP2 - 2D Spatial Transforms
4
5A minimal library for 2D spatial transformations using geometric algebra.
6Provides `Transform` (translation, orientation) and `Movement` (velocity, rotation) types with full operator support.
7*/
8
9mod movement;
10mod transform;
11
12pub use movement::Movement;
13pub use transform::Transform;