1
2
3
4
5
6
7
8
9
/// Image components for rastering.
pub mod image;
/// Alpha image with offset position.
pub mod mask;
/// Rasterize to convert path to mask.
pub mod rasterize;

// Scanline detection for flat paths.
mod scanlines;