6 lines
247 B
Rust
6 lines
247 B
Rust
//! Draw 2D graphics for your users.
|
|
//!
|
|
//! 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 use iced_graphics::canvas::*;
|