arthroprod 0.3.0

Clifford Algebra based computation for the theory of Absolute Relativity.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Algebraic operations on MultiVectors and other AR types.
//!
//! The operations in this module are derived from the Full Product of
//! the algebra, for differential based operations see the [`differentials`]
//! module.

mod ar;
mod ar_product;
mod division;
mod full_product;

pub use self::{ar::AR, ar_product::ar_product, division::div, full_product::full};