@@ -0,0 +1,7 @@
#include "maths.h"
float maths_modulo(float a, float b)
{
float r = fmod(a, b);
return r < 0? r + b : r;
}
The note is not visible to the blocked user.