📜  lerp 函数 - C 编程语言代码示例

📅  最后修改于: 2022-03-11 15:04:36.949000             🧑  作者: Mango

代码示例1
// Computes the linear interpolation between a and b for the parameter t
// a + t(b - a)
constexpr float lerp(float a, float b, float t) noexcept;