debug_plotter 0.2.1

Convenient macro to quickly plot variables.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fn main() {
    for i in 0usize..1000usize {
        debug_plotter::plot!(
            i where
            caption = "Options",
            size = (400, 300),
            path = "plots/Options.jpg",
            x_desc = "X Description",
            y_desc = "Y Description",
            x_range = 0f64..500f64,
            y_range = 0f64..500f64
        );
    }
}