meshing 0.0.1

meshing for 2D and 3D(not implemented yet)
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod point_2d;
pub use point_2d::Point2D;

mod triangle;
pub use triangle::Triangle;

mod edge;
pub use edge::Edge;

mod circle;
pub use circle::Circle;