blob: c63c876bd078522c40151c1baa2de6ccb513cbb2 [file] [log] [blame]
Fred Drake55e93961999-11-15 17:03:41 +00001\section{\module{turtle} ---
2 Turtle graphics for Tk}
3
4\declaremodule{standard}{turtle}
5 \platform{Tk}
6\moduleauthor{Guido van Rossum}{guido@python.org}
7\modulesynopsis{An environment for turtle graphics.}
8
Fred Drake57657bc2000-12-01 15:25:23 +00009\sectionauthor{Moshe Zadka}{moshez@zadka.site.co.il}
Fred Drake55e93961999-11-15 17:03:41 +000010
11
12The \module{turtle} module provides turtle graphics primitives, in both an
13object-oriented and procedure-oriented ways. Because it uses \module{Tkinter}
14for the underlying graphics, it needs a version of python installed with
15Tk support.
16
17The procedural interface uses a pen and a canvas which are automagically
18created when any of the functions are called.
19
20The \module{turtle} module defines the following functions:
21
22\begin{funcdesc}{degrees}{}
23Set angle measurement units to degrees.
24\end{funcdesc}
25
26\begin{funcdesc}{radians}{}
27Set angle measurement units to radians.
28\end{funcdesc}
29
30\begin{funcdesc}{reset}{}
31Clear the screen, re-center the pen, and set variables to the default
32values.
33\end{funcdesc}
34
35\begin{funcdesc}{clear}{}
36Clear the screen.
37\end{funcdesc}
38
39\begin{funcdesc}{tracer}{flag}
40Set tracing on/off (according to whether flag is true or not). Tracing
41means line are drawn more slowly, with an animation of an arrow along the
42line.
43\end{funcdesc}
44
45\begin{funcdesc}{forward}{distance}
46Go forward \var{distance} steps.
47\end{funcdesc}
48
49\begin{funcdesc}{backward}{distance}
50Go backward \var{distance} steps.
51\end{funcdesc}
52
53\begin{funcdesc}{left}{angle}
54Turn left \var{angle} units. Units are by default degrees, but can be
55set via the \function{degrees()} and \function{radians()} functions.
56\end{funcdesc}
57
58\begin{funcdesc}{right}{angle}
59Turn right \var{angle} units. Units are by default degrees, but can be
60set via the \function{degrees()} and \function{radians()} functions.
61\end{funcdesc}
62
63\begin{funcdesc}{up}{}
64Move the pen up --- stop drawing.
65\end{funcdesc}
66
67\begin{funcdesc}{down}{}
68Move the pen up --- draw when moving.
69\end{funcdesc}
70
71\begin{funcdesc}{width}{width}
72Set the line width to \var{width}.
73\end{funcdesc}
74
75\begin{funcdesc}{color}{s}
Fred Drake482b9a82001-11-15 20:41:03 +000076\funclineni{color}{(r, g, b)}
77\funclineni{color}{r, g, b}
78Set the pen color. In the first form, the color is specified as a
79Tk color specification as a string. The second form specifies the
80color as a tuple of the RGB values, each in the range [0..1]. For the
81third form, the color is specified giving the RGB values as three
82separate parameters (each in the range [0..1]).
Fred Drake55e93961999-11-15 17:03:41 +000083\end{funcdesc}
84
85\begin{funcdesc}{write}{text\optional{, move}}
86Write \var{text} at the current pen position. If \var{move} is true,
87the pen is moved to the bottom-right corner of the text. By default,
88\var{move} is false.
89\end{funcdesc}
90
91\begin{funcdesc}{fill}{flag}
92The complete specifications are rather complex, but the recommended
93usage is: call \code{fill(1)} before drawing a path you want to fill,
94and call \code{fill(0)} when you finish to draw the path.
95\end{funcdesc}
96
97\begin{funcdesc}{circle}{radius\optional{, extent}}
98Draw a circle with radius \var{radius} whose center-point is where the
99pen would be if a \code{forward(\var{radius})} were
100called. \var{extent} determines which part of a circle is drawn: if
101not given it defaults to a full circle.
102
103If \var{extent} is not a full circle, one endpoint of the arc is the
104current pen position. The arc is drawn in a counter clockwise
105direction if \var{radius} is positive, otherwise in a clockwise
106direction.
107\end{funcdesc}
108
109\begin{funcdesc}{goto}{x, y}
Fred Drake482b9a82001-11-15 20:41:03 +0000110\funclineni{goto}{(x, y)}
111Go to co-ordinates \var{x}, \var{y}. The co-ordinates may be
112specified either as two separate arguments or as a 2-tuple.
Fred Drake55e93961999-11-15 17:03:41 +0000113\end{funcdesc}
114
Fred Drake74242421999-11-17 16:09:57 +0000115This module also does \code{from math import *}, so see the
116documentation for the \refmodule{math} module for additional constants
117and functions useful for turtle graphics.
Fred Drake55e93961999-11-15 17:03:41 +0000118
119\begin{funcdesc}{demo}{}
120Exercise the module a bit.
121\end{funcdesc}
122
123\begin{excdesc}{Error}
124Exception raised on any error caught by this module.
125\end{excdesc}
126
127For examples, see the code of the \function{demo()} function.
128
129This module defines the following classes:
130
131\begin{classdesc}{Pen}{}
132Define a pen. All above functions can be called as a methods on the given
133pen. The constructor automatically creates a canvas do be drawn on.
134\end{classdesc}
135
136\begin{classdesc}{RawPen}{canvas}
137Define a pen which draws on a canvas \var{canvas}. This is useful if
138you want to use the module to create graphics in a ``real'' program.
139\end{classdesc}
140
141\subsection{Pen and RawPen Objects \label{pen-rawpen-objects}}
142
143\class{Pen} and \class{RawPen} objects have all the global functions
144described above, except for \function{demo()} as methods, which
145manipulate the given pen.
146
147The only method which is more powerful as a method is
148\function{degrees()}.
149
150\begin{methoddesc}{degrees}{\optional{fullcircle}}
151\var{fullcircle} is by default 360. This can cause the pen to have any
152angular units whatever: give \var{fullcircle} 2*$\pi$ for radians, or
153400 for gradians.
154\end{methoddesc}