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
//! Standalone binary entrypoint.
//!
//! The binary just delegates to the library runner so the same crate can be
//! used both as a standalone app and as an embeddable library.

fn main() -> Result<(), eframe::Error> {
    kithe_plot::run_native()
}