graplot 0.1.9

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

fn main() {
    // x(...) ... sets the absolute max value for x
    let plot = Plot::new((|x: f64| x.powf(3.) + x.powf(2.) - 0.08, x(1.)));
    plot.show();
}