1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
// Base graphic types.
pub mod types;
// Point object.
pub mod point;
// Graphics path processing.
pub mod path;
// Path points modification by transformation matrix.
pub mod transformation;
// Path converter to stroke variant.
pub mod stroke;

// Path flattening algorithms.
mod flatten;