APL/APL1.1/SAE11_2021/utils.c
2021-11-24 10:24:18 +01:00

5 lines
90 B
C

#include <math.h>
double LerpF(double a, double b, double t) {
return a + (b - a) * t;
}