graplot 0.1.22

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

fn main() {
    let xs = [0.,1.,2.,3.,4.,5.,6.];
    let ys = [0.,1.,4.,9.,16.,25.,36.];
    let zs = [0.,1.,4.,9.,16.,25.,36.];
    
    // move with: W, A, S, D
    let plot = Plot3D::new((xs, ys, zs, "r-o"));
    plot.show();
}