1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

extern crate nalgebra as na;

pub mod bezier;
pub mod color;
pub mod distance;
pub mod generate;
pub mod render;
pub mod shape;
pub mod transform;
#[cfg(feature = "ttf-parser")]
pub mod ttf_import;
#[cfg(feature = "visualize")]
pub mod visualize;

#[cfg(test)]
mod tests;