From: Michael Orlitzky Date: Sun, 8 May 2011 02:10:28 +0000 (-0400) Subject: Add a cube_at function to Grid. X-Git-Tag: 0.0.1~316 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=spline3.git;a=commitdiff_plain;h=7b713190502394ad4b23a14f77430ffeebd000d1 Add a cube_at function to Grid. --- diff --git a/src/Grid.hs b/src/Grid.hs index 6d360e2..3ca66ca 100644 --- a/src/Grid.hs +++ b/src/Grid.hs @@ -45,3 +45,17 @@ cubes g zsize = (length fvs) - 1 ysize = (length $ head fvs) - 1 xsize = (length $ head $ head fvs) - 1 + + +-- | Takes a grid and a position as an argument and returns the cube +-- centered on that position. If there is no cube there (i.e. the +-- position is outside of the grid), it will return Nothing. +cube_at :: Grid -> Int -> Int -> Int -> Maybe Cube +cube_at g i j k + | i < 0 = Nothing + | j < 0 = Nothing + | k < 0 = Nothing + | i >= length (cubes g) = Nothing + | j >= length ((cubes g) !! i) = Nothing + | k >= length (((cubes g) !! i) !! j) = Nothing + | otherwise = Just $ (((cubes g) !! i) !! j) !! k