📅  最后修改于: 2022-03-11 15:04:36.949000             🧑  作者: Mango
// 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;