Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! geo2d,2D几何类型,geo-types
//!    + 基本形状:点,线段,多边形
//!    + github: https://github.com/georust/geo
//!    + 重点是:带孔多边形的描述
//! boolean:多边形的布尔运算:&,|,^
//!    + github: https://github.com/21re/rust-geo-booleanop
//!

mod util;
mod geo2d;
mod boolean;

pub use util::*;
pub use geo2d::*;
pub use boolean::*;