| 37 | float Math_Mod1(float x); |
| 38 | |
| 39 | static CC_INLINE int Math_AbsI(int x) { return x < 0 ? -x : x; } |
| 40 | |
| 41 | static CC_INLINE float Math_SafeDiv(float a, float b) { |
| 42 | if (Math_AbsF(b) < 0.000001f) return MATH_LARGENUM; |
no outgoing calls
no test coverage detected