Interpolant constructor
Interpolant()
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);