poincare-app 0.2.0

Interactive 3D mathematical graphing application
1
2
3
4
5
6
7
8
9
10
use super::example_plots::ExamplePlot;
use crate::PlotEntry;

pub fn build() -> Vec<PlotEntry> {
    vec![
        ExamplePlot::Streamlines.build(),
        ExamplePlot::VolumeRender.build(),
        ExamplePlot::Isosurface.build(),
    ]
}