const interpolant = new v3d.LinearInterpolant(
    new Float32Array(2),
    new Float32Array(2),
    1,
    new Float32Array(1)
);
interpolant.evaluate(0.5);
    
    
    parameterPositions -- 位置数组
    sampleValues -- 样本数组
    sampleSize -- 样本数量
    resultBuffer -- 用于存储插值结果的缓冲区。
    
评估位置t处的插值。