rene 0.2.0

Computational geometry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub use self::contour::Contour;
pub use self::empty::Empty;
pub use self::multipolygon::Multipolygon;
pub use self::multisegment::Multisegment;
pub use self::point::Point;
pub use self::polygon::Polygon;
pub use self::segment::Segment;

mod contour;
mod contracts;
mod empty;
mod multipolygon;
mod multisegment;
mod point;
mod polygon;
mod segment;
mod utils;