Tighten border tolerance

This commit is contained in:
Mike Primm 2018-09-01 17:01:28 -05:00
parent 6da97c5e3f
commit 1495d6c2df

View File

@ -889,7 +889,7 @@ public class IsoHDPerspective implements HDPerspective {
double xoff = xx - fastFloor(xx);
double yoff = yy - fastFloor(yy);
double zoff = zz - fastFloor(zz);
return ((xoff < 0.0001) || (xoff > 0.9999) || (yoff < 0.0001) || (yoff > 0.9999) || (zoff < 0.0001) || (zoff > 0.9999));
return ((xoff < 0.00001) || (xoff > 0.99999) || (yoff < 0.00001) || (yoff > 0.99999) || (zoff < 0.00001) || (zoff > 0.99999));
}
/**