Skip to main content

fimg/drawing/
mod.rs

1//! contains drawing operations, like
2//! {line, box, triangle, polygon, circle, text}
3//! drawing
4mod r#box;
5mod circle;
6mod line;
7mod poly;
8#[cfg(feature = "text")]
9mod text;
10mod tri;