x3/
x3.rs

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