Manta Interactive Ray Tracer Development Mailing List

Text archives Help


[Manta] r1851 - trunk/Core/Color


Chronological Thread 
  • From: abe@sci.utah.edu
  • To: manta@sci.utah.edu
  • Subject: [Manta] r1851 - trunk/Core/Color
  • Date: Fri, 16 Nov 2007 05:51:21 -0700 (MST)

Author: abe
Date: Fri Nov 16 05:51:20 2007
New Revision: 1851

Modified:
   trunk/Core/Color/Spectrum.h
Log:

I've lost track if Spectrum::toString is supposed to exist or not, but
it recently appeared in the source file again and now it's in the
header too ;-)

This should fix the compilation error in Spectrum.cc

M    Core/Color/Spectrum.h


Modified: trunk/Core/Color/Spectrum.h
==============================================================================
--- trunk/Core/Color/Spectrum.h (original)
+++ trunk/Core/Color/Spectrum.h Fri Nov 16 05:51:20 2007
@@ -28,11 +28,11 @@
     ~Spectrum() {
     }
 
-    std::string toString() const;
-
     RGBColor getRGB() const;
     std::string writePersistentString() const;
     bool readPersistentString(const std::string& str);
+
+    std::string toString() const;
     
   protected:
     std::vector<float> samples;





Archive powered by MHonArc 2.6.16.

Top of page