线性插值通常用于:使用离散的样本来重建连续的信号。在计算机图形学中,这些样本可能是纹理、动画关键帧等。template <class T> T Lerp(T& a, T& b, float t) { return (T)(a * ( - t) + b * t); }