diff --git a/src/Tetris.hs b/src/Tetris.hs index 3a60248..cf10723 100644 --- a/src/Tetris.hs +++ b/src/Tetris.hs @@ -110,7 +110,7 @@ rotate' b@(Block s o@(V2 xo yo) cs) rotateWith dir = b & extra %~ fmap dir clockwise = (+ o) . (cwperp) . (subtract o) counterclockwise = (+ o) . LV.perp . (subtract o) - cwperp (V2 x y) = V2 x (-y) + cwperp (V2 x y) = V2 y (-x) -- | Get coordinates of entire block coords :: Block -> [Coord]