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
|
||||
//! [`Frame`]. It can be used for animation, data visualization, game graphics,
|
||||
//! and more!
|
||||
|
||||
pub mod event;
|
||||
pub mod fill;
|
||||
pub mod path;
|
||||
pub mod stroke;
|
||||
|
||||
mod cache;
|
||||
mod cursor;
|
||||
pub mod fill;
|
||||
pub(crate) mod frame;
|
||||
mod frame;
|
||||
mod geometry;
|
||||
mod program;
|
||||
pub mod stroke;
|
||||
mod text;
|
||||
|
||||
pub use cache::Cache;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue