Fonction Lerp C

// 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;
anavid7