# _drawimage bug - fix - demo # 23. 9. 2008 # Gregor Lingl from turtle import Screen, Turtle, mainloop s = Screen() s.register_shape("huhn.gif") s.setworldcoordinates(-200, -10, 200, 10) t = Turtle() t.shape("arrow") t.goto(100,5) imageturtle = Turtle() imageturtle.shape("huhn.gif") # the following doesn't work correctly imageturtle.goto(100,6) mainloop()