ribir_painter/lib.rs
1//! A 2d logic painter, generate the paint command
2pub mod color;
3mod painter;
4pub mod path;
5pub mod path_builder;
6pub use path::*;
7
8pub use crate::{
9 color::{Color, GradientStop, LightnessTone},
10 painter::*,
11};
12pub mod image;
13mod style;
14pub use style::*;
15
16pub use crate::image::PixelImage;
17mod svg;
18pub use svg::Svg;