sb_rust_library/lib.rs
1#![warn(missing_docs)]
2//! Basic library providing common functionality I reuse in many of my projects.
3//!
4//! I plan on adding a lot more things as I go, but for now, the only thing
5//! really worth mentioning is the mini plotting library `plotter` which can be
6//! used to quickly plot primitives (lines and circles) on a canvas.
7
8pub mod plotter;
9
10/// Wrapper around [indicatif](https://github.com/mitsuhiko/indicatif)'s `ProgressBar` with my preferred style.
11pub mod bar;
12
13/// Library that performs very common linear algebra calculations.
14pub mod math;
15
16/// Update buffer struct that allows you to update data while preserving old values.
17pub mod update_buffer;