Answers for "c lerp function"

C
1

lerp function 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;
Posted by: Guest on September-15-2021

Code answers related to "C"

Browse Popular Code Answers by Language