Files
oak-editor/io/math.h
T

9 lines
186 B
C

#ifndef MATH_H
#define MATH_H
int lerp(int a, int b, double t);
float float_lerp(float a, float b, float t);
double double_lerp(double a, double b, double t);
#endif // MATH_H