web3d / node_modules /three /src /math /interpolants /LinearInterpolant.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
291 Bytes
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;
}