From: Michael Orlitzky <michael@orlitzky.com>
Date: Sun, 28 Aug 2011 22:48:43 +0000 (-0400)
Subject: Un-transpose the x,z coordinates in the Values.idx function.
X-Git-Tag: 0.0.1~209
X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=1572b2b596bf28882bd674c1d9d22090a7f465da;p=spline3.git

Un-transpose the x,z coordinates in the Values.idx function.
---

diff --git a/src/Values.hs b/src/Values.hs
index 0ef8410..3833135 100644
--- a/src/Values.hs
+++ b/src/Values.hs
@@ -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