Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[MANTA] r1623 - in trunk: . Core/Geometry


Chronological Thread 
  • From: wald@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [MANTA] r1623 - in trunk: . Core/Geometry
  • Date: Fri, 10 Aug 2007 00:40:49 -0600 (MDT)

Author: wald
Date: Fri Aug 10 00:40:48 2007
New Revision: 1623

Modified:
   trunk/Core/Geometry/Vector.h
   trunk/Doxyfile
Log:
added Vector != Vector operator; kdtree code needs this.




Modified: trunk/Core/Geometry/Vector.h
==============================================================================
--- trunk/Core/Geometry/Vector.h        (original)
+++ trunk/Core/Geometry/Vector.h        Fri Aug 10 00:40:48 2007
@@ -298,6 +298,10 @@
               data[2] == right.data[2]);
     }
 
+    bool operator!=(const Vector& right) const {
+      return !(*this == right); 
+    }
+
     Real length() const {
       Real sum = data[0]*data[0];
       sum += data[1]*data[1];

Modified: trunk/Doxyfile
==============================================================================
--- trunk/Doxyfile      (original)
+++ trunk/Doxyfile      Fri Aug 10 00:40:48 2007
@@ -242,7 +242,7 @@
 #---------------------------------------------------------------------------
 CLASS_DIAGRAMS         = NO
 HIDE_UNDOC_RELATIONS   = YES
-HAVE_DOT               = YES
+HAVE_DOT               = NO
 CLASS_GRAPH            = YES
 COLLABORATION_GRAPH    = YES
 GROUP_GRAPHS           = YES




  • [MANTA] r1623 - in trunk: . Core/Geometry, wald, 08/10/2007

Archive powered by MHonArc 2.6.16.

Top of page