Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r1625 - trunk/Core/Geometry


Chronological Thread 
  • From: thiago@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r1625 - trunk/Core/Geometry
  • Date: Fri, 10 Aug 2007 16:25:01 -0600 (MDT)

Author: thiago
Date: Fri Aug 10 16:25:01 2007
New Revision: 1625

Modified:
   trunk/Core/Geometry/Vector.h
Log:
remember demorgan

Modified: trunk/Core/Geometry/Vector.h
==============================================================================
--- trunk/Core/Geometry/Vector.h        (original)
+++ trunk/Core/Geometry/Vector.h        Fri Aug 10 16:25:01 2007
@@ -299,8 +299,8 @@
     }
 
     bool operator!=(const Vector& right) const {
-      return (data[0] != right.data[0] &&
-              data[1] != right.data[1] &&
+      return (data[0] != right.data[0] ||
+              data[1] != right.data[1] ||
               data[2] != right.data[2]);
     }
 




  • [MANTA] r1625 - trunk/Core/Geometry, thiago, 08/10/2007

Archive powered by MHonArc 2.6.16.

Top of page