LinearInterpolant constructor
      
      LinearInterpolant()
     
    
parameterPositions -- array of positions
sampleValues -- array of samples
sampleSize -- number of samples
resultBuffer -- buffer to store the interpolation results.
Implementation
///
/// [sampleValues] -- array of samples
  ///
/// [sampleSize] -- number of samples
  ///
/// [resultBuffer] -- buffer to store the interpolation results.
  ///
  LinearInterpolant(
    super.parameterPositions,
    super.sampleValues,
    super.sampleSize,
    super.resultBuffer
  );