Crate graplot

source ·
Expand description

‘graplot’ is an experimental plotting library written in Rust that is based on [macroquad]. It creates a window displaying the graphs.

Example

use graplot::Plot;


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

Re-exports

pub use graph::Graph;

Modules

Structs

Use the Polynomial struct or polynomial() function to create a polynomial function that runs through all given points.

Enums

Constants

Traits

Functions

Type Definitions