summaryrefslogtreecommitdiffstats
path: root/glow/src/widget/canvas.rs
blob: bef348573a3955c780bc73353077cfda4e81b5c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
//! 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!
//!
//! [`Canvas`]: struct.Canvas.html
//! [`Frame`]: struct.Frame.html
pub use iced_graphics::canvas::*;