revert gjk test

This commit is contained in:
erwincoumans 2018-06-01 22:17:46 -07:00
parent e721a9cdf5
commit a450600eb8

View File

@ -32,10 +32,10 @@ subject to the following restrictions:
//must be above the machine epsilon
#ifdef BT_USE_DOUBLE_PRECISION
#define REL_ERROR2 btScalar(1.0e-12)
btScalar gGjkEpaPenetrationTolerance = BT_LARGE_FLOAT;
btScalar gGjkEpaPenetrationTolerance = 1.0e-12;
#else
#define REL_ERROR2 btScalar(1.0e-6)
btScalar gGjkEpaPenetrationTolerance = BT_LARGE_FLOAT;
btScalar gGjkEpaPenetrationTolerance = 0.001;
#endif
//temp globals, to improve GJK/EPA/penetration calculations