geoit 0.0.2

Exact geometric algebra with governed multivectors
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Clifford algebra engine.
//!
//! Provides [`Signature`] (algebra definition), [`Mv`] (sparse multivector),
//! [`blade_product`] (the fundamental product), and all standard GA operations
//! in [`ops`].

pub mod blade_new;
pub mod inverse;
pub mod mv;
pub mod ops;
pub mod product_new;
pub mod signature;

pub use blade_new::{BladeKey, BladeMask};
pub use inverse::{is_versor, InverseError};
pub use mv::Mv;
pub use product_new::blade_product;
pub use signature::Signature;