/// Module which contains the definition for the multivector.
/// Module which contains the definition for a grade-3 trivector.
/// Module which contains the definition for a grade-2 bivector.
/// Module which contains the definition for a grade-1 vector.
/// Enum wrapper around vector, bivector, and trivector.
/// Meant to make some chaining geometric operations more streamlined, but ended up being
/// more or less unnecessary.
/// Might still be helpful in some use cases.
// Exporting these was a bit of an afterthought, but should make things a little less verbose.
pub use Multivector;
pub use Trivector;
pub use Bivector;
pub use Vector;