1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
/*!
**Multi Channel Signed Distance Field renderer library.**

It allows you to create multi channel signed distance fields rendered
to the memory. Currently rendering from fonts is supported as well.
*/

//#![warn(missing_docs)]

extern crate cgmath;
extern crate rusttype;

pub mod font;
pub mod geometry;
pub mod math;
pub mod renderer;
pub mod shape;
pub mod texture;