decrease tolerance for test work

This commit is contained in:
Irlan 2018-05-24 18:13:56 -03:00
parent 4ae3b7cc79
commit 09ed4f7036

View File

@ -210,7 +210,7 @@ private:
// This tolerance helps intersections lying on
// shared edges to not be missed.
const float32 kTol = -0.005f;
const float32 kTol = -B3_EPSILON;
// Is the intersection on the triangle?
if (u > kTol && v > kTol && w > kTol)