Utils.cpp 124 B

12345
  1. #include "client/utils/Utils.h"
  2. float interpolate(float lag, float from, float to) {
  3. return from + lag * (to - from);
  4. }