UNPKG

277 BTypeScriptView Raw
1import { Interpolant } from "../Interpolant.js";
2
3export class CubicInterpolant extends Interpolant {
4 constructor(parameterPositions: any, samplesValues: any, sampleSize: number, resultBuffer?: any);
5
6 interpolate_(i1: number, t0: number, t: number, t1: number): any;
7}