graplot 0.1.22

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

#[test]
fn test_every_quadrant() {
    let plot = Plot::new(([-1., -1.5, -2.1, -1., -1.5, -2.1, 1., 1.5, 2.1, 1., 1.5, 2.1], [-2., -1., -2.5, 2., 1., 2.5, -2., -1., -2.5, 2., 1., 2.5], "ro"));
    plot.show();
}