cgrustplot/plots/
mod.rs

1//! # Plots Module
2//!
3//! This module provides all the plot types to be used, and contains 
4//! the main functionality of this crate.
5//! 
6//! Check out the documentation for each plot type for examples.
7//! 
8//! # Plot Types
9//! 
10//! * `array_plot`
11//! * `scatter_plot`
12//! * `function_plot`
13//! * `line_plot`
14//! * `image_plot`
15//! * `animation_plot`
16//! * `region_plot`
17//! 
18
19pub mod array_plot;
20pub mod scatter_plot;
21pub mod function_plot;
22pub mod line_plot;
23pub mod image_plot;
24pub mod animation_plot;
25pub mod region_plot;