Trying to find the modulo problem

This commit is contained in:
2023-04-05 21:44:55 -07:00
parent 6990178be3
commit b5707ed888
3 changed files with 9 additions and 4 deletions

View File

@ -74,7 +74,8 @@ namespace Dawn {
}
static inline float_t mathMod(float_t value, float_t modulo) {
return (float_t)fmod(value, modulo);
float_t n = fmod(value, modulo);
return n;
}
/**