From 530a0982232d634fc421beb59200f7fce60a6b1e Mon Sep 17 00:00:00 2001 From: Stefan Werner Date: Thu, 15 Jan 2026 10:45:54 +0100 Subject: [PATCH] Fixed a typo in verifyHit() --- kernels/common/ray.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernels/common/ray.h b/kernels/common/ray.h index a7b3bf33d0..78a3dc9888 100644 --- a/kernels/common/ray.h +++ b/kernels/common/ray.h @@ -250,7 +250,7 @@ namespace embree if (geomID == RTC_INVALID_GEOMETRY_ID) return; const bool vt = (abs(tfar) <= FLT_LARGE) || (tfar == float(neg_inf)); const bool vu = (abs(u) <= FLT_LARGE); - const bool vv = (abs(u) <= FLT_LARGE); + const bool vv = (abs(v) <= FLT_LARGE); const bool vnx = abs(Ng.x) <= FLT_LARGE; const bool vny = abs(Ng.y) <= FLT_LARGE; const bool vnz = abs(Ng.z) <= FLT_LARGE;