rustool 0.3.20

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;
/// General macros.
#[macro_use]
pub mod macros;
/// General functions.
pub mod general;

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