Utils.cpp 113 B

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