Godzil 4 éve
szülő
commit
de315d06f9
1 módosított fájl, 1 hozzáadás és 1 törlés
  1. 1 1
      source/world.cpp

+ 1 - 1
source/world.cpp

@@ -127,7 +127,7 @@ bool World::isShadowed(Tuple point)
     Ray r = Ray(point, direction);
     Intersection h = this->intersect(r).hit();
 
-    if (!h.nothing() && h.t < distance)
+    if (!h.nothing() && (h.t < distance))
     {
         return true;
     }