UNPKG

cubic-beziers-through-points

Version:

A function to fit fair (bending energy minimizing) cubic bezier curves through a set of given ordered points in the plane.

9 lines (8 loc) 186 B
import type { Info } from "./info"; /** * Returns additional information for each curve. * * @param hull */ declare function getInfos(hull: number[][]): Info[]; export { getInfos };