web3d / node_modules /three /src /math /Interpolant.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
282 Bytes
export abstract class Interpolant {
constructor(
parameterPositions: any,
samplesValues: any,
sampleSize: number,
resultBuffer?: any
);
parameterPositions: any;
samplesValues: any;
valueSize: number;
resultBuffer: any;
evaluate(time: number): any;
}