graplot 0.1.9

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

fn main() {
    let plot = Plot::new(|x: f64| x.powf(2.));
    plot.show();
}