gistools/tools/mod.rs
1/// Fast and robust Delaunay triangulation
2pub mod delaunator;
3/// Handle travel from one point to another "as the crow flys" using Orthodromic projection
4pub mod orthodrome;
5/// Create polylabels for a collection of vector polygons or a single vector polygon
6pub mod polylabel;
7
8pub use delaunator::*;
9pub use orthodrome::*;
10pub use polylabel::*;