rustool 0.3.14

Personal toolbox for my Rust projects
Documentation
/// Collection of functions for geometry computations.
pub mod geometry;
/// Log aliases.
#[macro_use]
pub mod log;
/// Constants.
pub mod constants;
/// Json toolbox.
#[macro_use]
pub mod json;
/// Collection of functions for matrix usage.
pub mod matrix;
/// Numerical algorithms toolbox.
pub mod numerical_algorithms;

pub use self::constants::*;
pub use self::geometry::*;
pub use self::json::*;
pub use self::log::*;
pub use self::matrix::*;
pub use self::numerical_algorithms::*;