using std::lerp; // according to https://en.cppreference.com/w/cpp/numeric/lerp.html constexpr float lerp( float a, float b, float t ) noexcept; I think this part of ...