@davepagurek/flo-mat
Version:
Medial / Scale Axis Transform (MAT/SAT) Library.
16 lines (11 loc) • 358 B
text/typescript
import { Curve } from '../curve/curve.js';
interface PointOnShape {
/** The [[ICurve]] on the shape boundary this points belong to. */
curve: Curve;
/** The bezier parameter value on the curve identifying the point coordinates. */
t: number;
p: number[];
/** just for debugging */
source: boolean;
}
export { PointOnShape }