From 1572b2b596bf28882bd674c1d9d22090a7f465da Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 28 Aug 2011 18:48:43 -0400 Subject: [PATCH] Un-transpose the x,z coordinates in the Values.idx function. --- src/Values.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.43.2