Refactor imports in widget::canvas in iced_graphics
This commit is contained in:
parent
84d1b79fef
commit
e9e2657791
1 changed files with 3 additions and 4 deletions
|
|
@ -3,17 +3,16 @@
|
||||||
//! A [`Canvas`] widget can be used to draw different kinds of 2D shapes in a
|
//! A [`Canvas`] widget can be used to draw different kinds of 2D shapes in a
|
||||||
//! [`Frame`]. It can be used for animation, data visualization, game graphics,
|
//! [`Frame`]. It can be used for animation, data visualization, game graphics,
|
||||||
//! and more!
|
//! and more!
|
||||||
|
|
||||||
pub mod event;
|
pub mod event;
|
||||||
|
pub mod fill;
|
||||||
pub mod path;
|
pub mod path;
|
||||||
|
pub mod stroke;
|
||||||
|
|
||||||
mod cache;
|
mod cache;
|
||||||
mod cursor;
|
mod cursor;
|
||||||
pub mod fill;
|
mod frame;
|
||||||
pub(crate) mod frame;
|
|
||||||
mod geometry;
|
mod geometry;
|
||||||
mod program;
|
mod program;
|
||||||
pub mod stroke;
|
|
||||||
mod text;
|
mod text;
|
||||||
|
|
||||||
pub use cache::Cache;
|
pub use cache::Cache;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue