mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-17 17:48:06 +00:00
8 lines
388 B
TypeScript
8 lines
388 B
TypeScript
// Type definitions for b-spline 2.0
|
|
// Project: https://github.com/thibauts/b-spline
|
|
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
declare function interpolate<T extends ArrayLike<number>>(t: number, degree: number, points: T[], knots?: number[], weights?: number[]): T;
|
|
|
|
export = interpolate;
|