jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
//! Renderer-neutral geometry primitives for Jellyflow runtimes and adapters.

mod bounds;
mod endpoints;
mod hit_test;
mod paths;
mod viewport;

pub(crate) use bounds::CanvasBounds;
pub use endpoints::{
    EdgeEndpointInput, EdgeEndpointPosition, EdgePosition, HandleBounds, HandlePosition,
    edge_position, handle_anchor_position, handle_center_position,
};
pub use hit_test::{EdgeHitTestOptions, edge_path_contains_point, edge_path_distance};
pub use paths::{
    BezierEdgeOptions, EdgePath, EdgePathLabel, PathCommand, SmoothStepEdgeOptions,
    bezier_edge_path, smoothstep_edge_path, straight_edge_path,
};
pub(crate) use viewport::ViewportFitFrame;