cgrustplot 1.2.2

Plotting utility for Rust, with a variety of plot types and capabilities.
Documentation
//! # Plots Module
//!
//! This module provides all the plot types to be used, and contains 
//! the main functionality of this crate.
//! 
//! Check out the documentation for each plot type for examples.
//! 
//! # Plot Types
//! 
//! * `array_plot`
//! * `scatter_plot`
//! * `function_plot`
//! * `line_plot`
//! * `image_plot`
//! * `animation_plot`
//! * `region_plot`
//! 

pub mod array_plot;
pub mod scatter_plot;
pub mod function_plot;
pub mod line_plot;
pub mod image_plot;
pub mod animation_plot;
pub mod region_plot;