debug_plotter 0.2.1

Convenient macro to quickly plot variables.
Documentation
1
2
3
4
5
6
7
fn main() {
    for a in 0usize..1000usize {
        let b = a * 2;
        debug_plotter::plot!(a where caption = "Plot 1");
        debug_plotter::plot!(b where caption = "Plot 2");
    }
}