simply_2dpga/lib.rs
1/// Primary definitions for the crate. Multivectors and various grade of k-vector can be found in here,
2/// along with an enum wrapper for k-vectors.
3pub mod defs;
4/// Geometric algebra traits are defined in this module.
5pub mod traits;
6/// Extra goodies! Point2d wrapper, rotors, motors, and reflections.
7pub mod extras;
8/// A prelude, to be used as convenient.
9/// Includes multivector, vector, bivector, trivector, traits, and equality comparisons.
10pub mod prelude;
11
12/// Equality comparisons for k-vectors and multivectors.
13/// Included as its own module incase someone wants to tweak how its handled.
14pub mod equality;
15
16/// Unit tests.
17mod tests;