@davepagurek/flo-mat
Version:
Medial / Scale Axis Transform (MAT/SAT) Library.
10 lines (9 loc) • 317 B
TypeScript
import { CpNode } from '../cp-node/cp-node.js';
/**
* Returns the bezier curve from the maximal disk of one [[CpNode]] to another
* [[CpNode]]'s maximal disk.
* @param cpNodeFrom
* @param cpNodeTo
*/
declare function getCurveBetween(cpNodeFrom: CpNode, cpNodeTo: CpNode): number[][];
export { getCurveBetween };