-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | turtle like LOGO -- -- In ghci -- --
--   :m Graphics.X11.Turtle
--   f <- openField
--   t <- newTurtle f
--   forward t 100
--   left t 50
--   
-- -- etc @package xturtle @version 0.0.10 module Graphics.X11.Turtle data Field data Turtle openField :: IO Field closeField :: Field -> IO () newTurtle :: Field -> IO Turtle killTurtle :: Turtle -> IO () forward, backward :: Turtle -> Double -> IO () left, setheading, right :: Turtle -> Double -> IO () goto :: Turtle -> Double -> Double -> IO () setx, sety :: Turtle -> Double -> IO () home :: Turtle -> IO () circle :: Turtle -> Double -> IO () undo :: Turtle -> IO () position :: Turtle -> IO (Double, Double) xcor, ycor :: Turtle -> IO Double heading :: Turtle -> IO Double distance :: Turtle -> Double -> Double -> IO Double penup, pendown :: Turtle -> IO () isdown :: Turtle -> IO Bool bgcolor :: Field -> Word8 -> Word8 -> Word8 -> IO () pencolor :: Turtle -> Word8 -> Word8 -> Word8 -> IO () pensize :: Turtle -> Int -> IO () clear :: Turtle -> IO () hideturtle, showturtle :: Turtle -> IO () isvisible :: Turtle -> IO Bool shape :: Turtle -> String -> IO () shapesize :: Turtle -> Double -> IO () degrees :: Turtle -> Double -> IO () radians :: Turtle -> IO () windowWidth, windowHeight :: Turtle -> IO Double xturtleVersion :: (Int, String)