geonum 0.12.0

geometric number library supporting unlimited dimensions with O(1) complexity
Documentation
//! trait definitions for the geonum crate
//!
//! defines the traits that define various geometric algebra operations

// conditionally re-export trait modules based on features

#[cfg(feature = "optics")]
pub mod optics;
#[cfg(feature = "optics")]
pub use optics::Optics;

#[cfg(feature = "projection")]
pub mod projection;
#[cfg(feature = "projection")]
pub use projection::Projection;

#[cfg(feature = "ml")]
pub mod machine_learning;
#[cfg(feature = "ml")]
pub use machine_learning::{Activation, MachineLearning};

#[cfg(feature = "em")]
pub mod electromagnetics;
#[cfg(feature = "em")]
pub use electromagnetics::Electromagnetics;

#[cfg(feature = "waves")]
pub mod waves;
#[cfg(feature = "waves")]
pub use waves::Waves;

#[cfg(feature = "affine")]
pub mod affine;
#[cfg(feature = "affine")]
pub use affine::Affine;