@davepagurek/flo-mat
Version:
Medial / Scale Axis Transform (MAT/SAT) Library.
17 lines (12 loc) • 335 B
text/typescript
import { Curve } from '../curve/curve.js';
/**
* @internal
* Represents a part of a bezier within the shape boundary.
*/
interface BezierPiece {
/** A bezier curve within the shape boundary. */
curve: Curve;
/** The start and end t parameter values of the bezier curve. */
ts: number[];
}
export { BezierPiece }