runmat_plot/plots/
mod.rs

1//! High-level plot type implementations
2//!
3//! This module contains implementations of specific plot types like
4//! line plots, scatter plots, surfaces, etc.
5
6pub mod bar;
7pub mod figure;
8pub mod histogram;
9pub mod line;
10pub mod point_cloud;
11pub mod scatter;
12pub mod surface;
13pub mod volume;
14
15pub use bar::BarChart;
16pub use figure::{Figure, LegendEntry, PlotElement, PlotType};
17pub use histogram::Histogram;
18pub use line::{LinePlot, LineStyle};
19pub use point_cloud::{PointCloudPlot, PointCloudStatistics, PointStyle, SizeMode};
20pub use scatter::{MarkerStyle, ScatterPlot};
21pub use surface::{ColorMap, ShadingMode, SurfacePlot, SurfaceStatistics};
22pub use volume::*;