1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![doc(html_logo_url = "https://nical.github.io/lyon-doc/lyon-logo.svg")]
#![deny(bare_trait_objects)]

//! 2d Path transformation and manipulation algorithms.
//!
//! This crate is reexported in [lyon](https://docs.rs/lyon/).

// TODO doc!

pub extern crate lyon_path as path;
extern crate sid;

pub(crate) mod advanced_path;
pub mod splitter;
pub mod hatching;
pub mod raycast;
pub mod walk;
pub mod aabb;
pub mod fit;

pub use path::math;
pub use path::geom;