nostd_structs 0.5.0

Datastructures and algorithms for nostd environments
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Multidimensional geometry structs that are used in multidimensional algorithms
mod line_2d;
mod misc;
mod point_2d;
mod polygon_2d;
mod shape_2d;
mod triangle_2d;

pub use line_2d::Line2D;
pub use point_2d::Point2D;
pub use polygon_2d::Polygon2D;
pub use shape_2d::Shape2D;
pub use triangle_2d::Triangle2D;