cavalier_contours 0.7.0

2D polyline/shape library for offsetting, combining, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! This module has all the types and functions associated with polylines, polyline vertexes, and
//! polyline segments.
pub mod internal;
mod pline;
mod pline_seg;
mod pline_seg_intersect;
mod pline_types;
mod pline_vertex;
mod pline_view;
mod traits;

pub use pline::*;
pub use pline_seg::*;
pub use pline_seg_intersect::*;
pub use pline_types::*;
pub use pline_vertex::*;
pub use pline_view::*;
pub use traits::*;