git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@237 92aac97c-a6ce-11dd-a772-7fcde58d38e6

This commit is contained in:
chappuis.daniel 2009-12-25 09:38:38 +00:00
parent a53336cc92
commit 3b8f99fd55

View File

@ -23,6 +23,9 @@
// Libraries
#include "constants.h"
// ReactPhysics3D namespace
namespace reactphysics3d {
// ---------- Mathematics functions ---------- //
// function to test if two numbers are (almost) equal
@ -32,6 +35,8 @@ inline bool approxEqual(double a, double b) {
return (difference < EPSILON && difference > -EPSILON);
}
} // End of ReactPhysics3D namespace
#endif