1 | import { Interpolant } from "../Interpolant.js";
|
2 |
|
3 | export 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 | }
|