starry / backend /libs /three /math /Interpolant.d.ts
k-l-lambda's picture
feat: add Python ML services (CPU mode) with model download
2b7aae2
export abstract class Interpolant {
constructor(parameterPositions: any, sampleValues: any, sampleSize: number, resultBuffer?: any);
parameterPositions: any;
sampleValues: any;
valueSize: number;
resultBuffer: any;
evaluate(time: number): any;
}