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