simply_2dpga 0.1.2

A 2d vector math library using 2d projective geometric algebra! Designed to be programmer-friendly, specifically because I wanted to use PGA in game development. Development is ongoing.
Documentation
1
2
3
4
5
6
7
8
// Users can manually include k-vectors if they want to use them.
pub use crate::defs::{multivector::*, vector::*, bivector::*, trivector::*};

// We want to include all geometric algebra operators.
pub use crate::traits::*;

// Probably for the best that equality comparison is included by default.
pub use crate::equality::*;