LinearInterpolant.d.ts 291 字节
Newer Older
L
lu wang 已提交
1 2 3 4 5 6 7 8 9 10 11 12
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;
}