#include "Utils.h"

float interpolate(float lag, float from, float to)
{
    return from + lag * (to - from);
}