debug_plotter 0.2.1

Convenient macro to quickly plot variables.
Documentation
1
2
3
4
5
6
7
8
fn main() {
    for a in 0usize..10usize {
        let b = (a as f32 / 2.0).sin() * 10.0;
        let c = 5 - (a as i32);

        debug_plotter::plot!(a, b, c where caption = "My Plot");
    }
}