graplot 0.1.22

Experimental plotting library based on macroquad
Documentation
1
2
3
4
5
6
7
8
9
10
use graplot::Plot;

#[test]
fn markers() {
    let xs = [1., 8.];
    let ys = [3., 10.];

    let plot = Plot::new((xs, ys, "-o"));
    plot.show();
}