ndgrid/geometry.rs
1//! Grid geometry
2mod geometry_map;
3pub(crate) mod mixed;
4mod point;
5pub(crate) mod single_element;
6pub use geometry_map::GeometryMap;
7pub use mixed::{MixedEntityGeometry, MixedGeometry};
8pub use point::{Point, PointIter};
9pub use single_element::{SingleElementEntityGeometry, SingleElementGeometry};