geomutil_util 0.1.2

A Rust library providing basic geometric types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod edge2;
mod point;
mod shape2;
mod triangle2;

pub use edge2::Edge2;
pub use point::{Point2, Point3};
pub use shape2::Shape2D;
pub use triangle2::Triangle2;

pub const EPS: f32 = 1e-10;