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::ContouredSurface.build(), ExamplePlot::SphericalHarmonic.build(), ExamplePlot::GridSurface.build(), ] }