Float stuff

This commit is contained in:
Alex
2022-12-29 07:46:55 +02:00
parent ce8caa9f89
commit 5774ceb9e1
2 changed files with 33 additions and 0 deletions

View File

@ -18,6 +18,11 @@ extern "C"
char *reverse(char *Buffer, int i, int j);
float sqrtf(float x);
double clamp(double x, double low, double high);
float lerp(float a, float b, float t);
float smoothstep(float a, float b, float t);
float cubicInterpolate(float a, float b, float t);
void backspace(char s[]);
void append(char s[], char n);