increase eps

This commit is contained in:
Trammell Hudson 2015-02-16 15:00:26 -05:00
parent e34c2e2911
commit cae0923a93

View File

@ -121,7 +121,7 @@ stl_angle(
); );
//int check = -EPS < dot && dot < +EPS; //int check = -EPS < dot && dot < +EPS;
int check = -1 < dot && dot < +1; int check = -10 < dot && dot < +10;
// if the dot product is not close enough to zero, they // if the dot product is not close enough to zero, they
// are not coplanar. // are not coplanar.