APL/APL1.1/SAE11_2021/utils.c
2021-11-22 17:29:33 +01:00

5 lines
90 B
C

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