Skip to content

Commit

Permalink
fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
fwilliams committed May 1, 2022
1 parent 95d48e6 commit 3ba45f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/embree_intersector.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ ::intersectRay(
// This epsilon is directly correleated to the number of missed hits, smaller
// means more accurate and slower
//const double eps = DOUBLE_EPS;
const double eps = FLOAT_EPS;
const double eps = igl::FLOAT_EPS;
double min_t = tnear;
bool large_hits_warned = false;
RTCRayHit ray; // EMBREE_FIXME: use RTCRay for occlusion rays
Expand Down

0 comments on commit 3ba45f4

Please sign in to comment.