web3d / node_modules /three /src /math /interpolants /DiscreteInterpolant.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
293 Bytes
import { Interpolant } from '../Interpolant';
export class DiscreteInterpolant extends Interpolant {
constructor(
parameterPositions: any,
samplesValues: any,
sampleSize: number,
resultBuffer?: any
);
interpolate_(i1: number, t0: number, t: number, t1: number): any;
}