footile

A 2D vector graphics library written in Rust

Example

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

let fish = PathBuilder::new().relative().penwidth(3f32) .moveto(112f32, 24f32) .lineto(-32f32, 24f32) .cubicto(-96f32, -48f32, -96f32, 80f32, 0f32, 32f32) .lineto(32f32, 24f32) .lineto(-16f32, -40f32) .close().build(); let mut p = Plotter::new(128, 128); p.fill(&fish, FillRule::NonZero).colorover(Color::rgb(127, 96, 96)); p.stroke(&fish).colorover(Color::rgb(255, 208, 208)); p.write_png("./fishy.png")?; ```