]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Don't output function values when 'show'ing a cube.
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 4 Oct 2011 00:04:52 +0000 (20:04 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 4 Oct 2011 00:04:52 +0000 (20:04 -0400)
src/Cube.hs

index 1144a13168d7041800d67e18876d2e4dd369cdc7..6e67d4cd4d6d3c7311a7c095e4b43be9387ba69b 100644 (file)
@@ -64,8 +64,7 @@ instance Show Cube where
         " ymin: " ++ (show (ymin cube)) ++ "\n" ++
         " ymax: " ++ (show (ymax cube)) ++ "\n" ++
         " zmin: " ++ (show (zmin cube)) ++ "\n" ++
-        " zmax: " ++ (show (zmax cube)) ++ "\n" ++
-        " fv: " ++ (show (Cube.fv cube)) ++ "\n"
+        " zmax: " ++ (show (zmax cube)) ++ "\n"
         where
           subscript =
               (show (i cube)) ++ "," ++ (show (j cube)) ++ "," ++ (show (k cube))