From e64715d051aff698889023a34c2a9dc105325823 Mon Sep 17 00:00:00 2001 From: Sam Tay Date: Sat, 17 Jun 2017 21:30:57 -0400 Subject: [PATCH] Fix clockwise rotation --- src/Tetris.hs | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/Tetris.hs b/src/Tetris.hs index 7b3813f..c1a898a 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -116,16 +116,8 @@ rotate' b@(Block s o@(xo,yo) cs) | otherwise = rotateWith counterclockwise b where rotateWith :: (Coord -> Coord -> Coord) -> Block -> Block - rotateWith dir b = b & extra %~ fmap (dir (b ^. origin)) - - clockwise :: Coord -- ^ origin - -> Coord -- ^ point to rotate around origin - -> Coord - clockwise (xo, yo) (x, y) = (xo + y - yo, xo + y - x) - - counterclockwise :: Coord -- ^ origin - -> Coord -- ^ point to rotate around origin - -> Coord + rotateWith dir b = b & extra %~ fmap (dir (b ^. origin)) + clockwise (xo, yo) (x, y) = (xo + y - yo, xo + yo - x) counterclockwise (xo, yo) (x, y) = (xo + yo - y, x + yo - xo) -- | Get coordinates of entire block