//! 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 use Path2D;
pub use *;
pub use *;