UNPKG

three

Version:

JavaScript 3D library

27 lines (15 loc) 482 B
import { Interpolant } from '../Interpolant.js'; /** * * Interpolant that evaluates to the sample value at the position preceding * the parameter. */ class DiscreteInterpolant extends Interpolant { constructor( parameterPositions, sampleValues, sampleSize, resultBuffer ) { super( parameterPositions, sampleValues, sampleSize, resultBuffer ); } interpolate_( i1 /*, t0, t, t1 */ ) { return this.copySampleValue_( i1 - 1 ); } } export { DiscreteInterpolant };