Utils.cpp 111 B

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