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(), ] }