1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
    Appellation: math <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Mathematics
//!
//! This module contains the core mathematical operations and structures used
//! throughout the library. It is divided into submodules for each mathematical
//! operation or structure.
pub use self::props::*;

pub(crate) mod props;

pub mod linalg;

#[cfg(test)]
mod tests {}