Apply FIXFLOAT macro

This commit is contained in:
Scott Lahteine
2017-03-31 08:17:10 -05:00
parent 6cac0f43eb
commit 4487d22d56
4 changed files with 7 additions and 6 deletions

View File

@ -138,5 +138,6 @@
#define NEAR(x,y) NEAR_ZERO((x)-(y))
#define RECIPROCAL(x) (NEAR_ZERO(x) ? 0.0 : 1.0 / (x))
#define FIXFLOAT(f) (f + 0.00001)
#endif //__MACROS_H