query_curve/
types.rs

1pub type BezierSegment = [f64; 8];
2
3pub type ScaledBezierChain = Vec<f64>;
4
5pub type EncodedScaledBezierChain = String;