Lines Matching refs:turtle
3 A new turtle module for Python
10 Imagine a robotic turtle starting at (0, 0) in the x-y plane. After an ``import turtle``, give it
11 the command turtle.forward(15), and it moves (on-screen!) 15 pixels in
13 command turtle.right(25), and it rotates in-place 25 degrees clockwise.
18 ----- turtle.py
20 This module is an extended reimplementation of turtle.py from the
23 It tries to keep the merits of turtle.py and to be (nearly) 100%
31 - Better animation of the turtle movements, especially of turning the
32 turtle. So the turtles can more easily be used as a visual feedback
35 - Different turtle shapes, gif-images as turtle shapes, user defined
36 and user controllable turtle shapes, among them compound
40 - Fine control over turtle movement and screen updates via delay(),
47 turtle graphcis.
55 extended interactively as needed while playing around with the turtle(s).
69 configured by means of a turtle.cfg configuration file.
70 The default configuration mimics the appearance of the old turtle module.