Spaces:
Sleeping
Sleeping
File size: 269 Bytes
2b7aae2 | 1 2 3 4 5 6 7 8 | import { Interpolant } from '../Interpolant';
export class LinearInterpolant extends Interpolant {
constructor(parameterPositions: any, samplesValues: any, sampleSize: number, resultBuffer?: any);
interpolate_(i1: number, t0: number, t: number, t1: number): any;
}
|