From 7b713190502394ad4b23a14f77430ffeebd000d1 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 7 May 2011 22:10:28 -0400 Subject: [PATCH] Add a cube_at function to Grid. --- src/Grid.hs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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 -- 2.43.2