Skip to main content

painter/
lib.rs

1mod axis;
2mod color;
3mod drawable;
4mod figure;
5pub mod primitive;
6mod text_render;
7pub mod utils;
8
9pub use axis::ScaleStrategy;
10pub use figure::Config;
11pub use figure::Figure;