KiThePlot 0.5.0

KiThePlot is a standalone/embeddable plot redactor (plotting library) written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Domain model module.
//!
//! - `data`: generic columnar numeric data storage + parsing utilities.
//! - `types`: reusable configuration/style types for plotting.
//! - `plot`: aggregate plot model (axes, legend, series, layout).

pub mod data;
pub mod plot;
pub mod types;

pub use data::*;
pub use plot::*;
pub use types::*;