lerp function c

Solutions on MaxInterview for lerp function c by the best coders in the world

showing results for - "lerp function c"
Kayla
01 Feb 2018
1// Computes the linear interpolation between a and b for the parameter t
2// a + t(b - a)
3constexpr float lerp(float a, float b, float t) noexcept;