Browse Source

Just to be sure.

Godzil 4 years ago
parent
commit
de315d06f9
1 changed files with 1 additions and 1 deletions
  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;
     }