//! SVG geometry primitives (points, curves, rects, vectors) and animation interpolation functions.
/// Holds context needed to resolve animation interpolation relative to parent and current rects.
// repr(C,u8) FFI enum: boxing the large variant would change the C ABI (api.json bindings); size
pub const fn new(start: SvgPoint, ctrl_1: SvgPoint, ctrl_2: SvgPoint, end: SvgPoint) -> Self {
pub fn parse_style_animation(input: &str) -> Result<StyleAnimation, StyleAnimationParseError<'_>> {