ndgrid/shapes.rs
1//! Functions to create simple example grids
2
3mod cube;
4mod regular_sphere;
5mod screen;
6
7pub use cube::{
8 unit_cube, unit_cube_boundary, unit_cube_edges, unit_interval, unit_square,
9 unit_square_boundary,
10};
11pub use regular_sphere::regular_sphere;
12pub use screen::{screen_quadrilaterals, screen_triangles};