reflow_components 0.2.0

Standard component catalog for Reflow — procedural, media, GPU, animation, I/O, and stream actors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 2D vector graphics actors — shapes, paths, rasterization, compositing.

mod background;
mod blend_mode;
mod blur;
mod canvas;
mod rasterize;
mod shape;

pub use background::BackgroundActor;
pub use blend_mode::BlendModeActor;
pub use blur::GaussianBlurActor;
pub use canvas::Canvas2DActor;
pub use rasterize::VectorRasterizeActor;
pub use shape::Shape2DActor;