Interpolant constructor

Interpolant(
  1. List<num> parameterPositions,
  2. List<num> sampleValues,
  3. int valueSize,
  4. List? resultBuffer,
)

parameterPositions -- array of positions

sampleValues -- array of samples

valueSize -- number of values

resultBuffer -- buffer to store the interpolation results.

Implementation

///
/// [sampleValues] -- array of samples
  ///
/// [valueSize] -- number of values
  ///
/// [resultBuffer] -- buffer to store the interpolation results.
  ///
  Interpolant(this.parameterPositions, this.sampleValues, this.valueSize,this.resultBuffer);