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.
// Users can manually include k-vectors if they want to use them.
pubusecrate::defs::{multivector::*,vector::*,bivector::*,trivector::*};// We want to include all geometric algebra operators.
pubusecrate::traits::*;// Probably for the best that equality comparison is included by default.
pubusecrate::equality::*;