reflow_vector 0.2.1

2D vector graphics primitives for Reflow — paths, shapes, boolean ops, rasterization.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 2D vector graphics for Reflow.
//!
//! Pure Rust, Wasm-safe. Provides:
//! - `Path2D` — bezier path representation with SVG `d` attribute parsing
//! - Shape primitives — rect, ellipse, polygon, star, line
//! - Path operations — transform, reverse, flatten, sample, bounding box
//! - Fill/stroke styles — solid, gradient, pattern

pub mod path;
pub mod shapes;
pub mod style;
pub mod transform;

pub use path::Path2D;
pub use shapes::*;
pub use style::*;