Recast: add dtMathRoundf

This commit is contained in:
Kawe Mazidjatari 2024-07-12 21:34:00 +02:00
parent e8753cdd14
commit 61705cb85e

View File

@ -21,6 +21,7 @@ inline float dtMathFabsf(float x) { return fabsf(x); }
inline float dtMathSqrtf(float x) { return sqrtf(x); }
inline float dtMathFloorf(float x) { return floorf(x); }
inline float dtMathCeilf(float x) { return ceilf(x); }
inline float dtMathRoundf(float x) { return roundf(x); }
inline float dtMathCosf(float x) { return cosf(x); }
inline float dtMathSinf(float x) { return sinf(x); }
inline float dtMathAtan2f(float y, float x) { return atan2f(y, x); }