arcs 0.3.0

An extensible framework for creating 2D CAD applications using the Entity-Component-System pattern.
Documentation
1
2
3
4
5
6
7
//! Basic geometric types which are generic over their coordinate space.

mod arc;
mod line;

pub use arc::Arc;
pub use line::Line;