Skip to content

Commit

Permalink
Fix header namespace closure
Browse files Browse the repository at this point in the history
Only relevant when TINYBVH_IMPLEMENTATION isn't defined
  • Loading branch information
stephomi committed Nov 2, 2024
1 parent ac6b5bd commit 0a0acb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tiny_bvh.h
Original file line number Diff line number Diff line change
Expand Up @@ -753,10 +753,10 @@ float BVH::IntersectAABB( const Ray& ray, const bvhvec3& aabbMin, const bvhvec3&
if (tmax >= tmin && tmin < ray.hit.t && tmax >= 0) return tmin; else return 1e30f;
}

#endif

} // namespace tinybvh

#endif

#endif

// EOF

0 comments on commit 0a0acb3

Please sign in to comment.