Croot-Gui
A Rust crate for graphing complex roots and numbers
Context
This crate is designed to be paired with croot
Examples
Create Graph
use *;
// Complex roots of a function
let roots = vec!;
// Name of file to generate
let filename = "graph.png";
// Size of image in pixels
let dimensions = ;
// Generate the graph with the selected parameters
generate_graph.expect
Display Graph
use *;
// Complex roots of a function
let roots = vec!;
// Size of image and window in pixels
let dimensions = ;
// Open a window containing the graph generated from the selected parameters
show_graph.expect;