footile

A 2D vector graphics library written in Rust.

Documentation

https://docs.rs/footile

Example

```rust use footile::{FillRule, PathBuilder, Plotter};

let fish = PathBuilder::new() .relative() .penwidth(3.0) .moveto(112.0, 24.0) .lineto(-32.0, 24.0) .cubicto(-96.0, -48.0, -96.0, 80.0, 0.0, 32.0) .lineto(32.0, 24.0) .lineto(-16.0, -40.0) .close() .build(); let mut p = Plotter::new(128, 128); let raster = p.fill(&fish, FillRule::NonZero); ```

Goals