Safe Haskell | Safe |
---|
A Module for ASCII Pictures.
- type Height = Int
- type Width = Int
- type Picture = (Height, Width, [[Char]])
- height :: Picture -> Height
- width :: Picture -> Width
- pixel :: Char -> Picture
- row :: String -> Picture
- blank :: Height -> Width -> Picture
- above :: Picture -> Picture -> Picture
- stack :: [Picture] -> Picture
- beside :: Picture -> Picture -> Picture
- spread :: [Picture] -> Picture
- tile :: [[Picture]] -> Picture
- showPic :: Picture -> String