starry / backend /libs /three /math /interpolants /LinearInterpolant.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
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;
}