]> gitweb.michael.orlitzky.com - spline3.git/commitdiff
Un-transpose the x,z coordinates in the Values.idx function.
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 28 Aug 2011 22:48:43 +0000 (18:48 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 28 Aug 2011 22:48:43 +0000 (18:48 -0400)
src/Values.hs

index 0ef8410813e80729e09a0af3ec4a162bd7868814..3833135c720b7c0abe2e9c8c54e7334b1124383e 100644 (file)
@@ -79,7 +79,7 @@ idx v3d i j k =
     index v3d shape
     where
       shape :: DIM3
-      shape = (Z :. k :. j :. i)
+      shape = (Z :. i :. j :. k)
 
 
 zoom_shape :: Int -> DIM3 -> DIM3