gistools/geometry/tools/
mod.rs

1mod clip;
2mod convert;
3mod lines;
4mod points;
5mod polys;
6mod simplify;
7
8pub use clip::*;
9pub use convert::*;
10pub use lines::*;
11pub use points::*;
12pub use polys::*;
13pub use simplify::*;
14
15// TODO:
16
17// Line
18// - [ ] point to line distance
19
20// Poly
21// - [ ] Poly Boolean
22
23// Clean
24// - [ ] Dekink: remove kinks from a polygon
25// - [ ] Reduce: Remove redundant points
26// - [ ] clean: remove redundant points, (multi)linestring and/or (multi)polygon, fixes kinks, merges with poly bool. Put all under flags with all turned on by default