This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: turtle circle() documentation error
Type: Stage:
Components: Documentation Versions: Python 2.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: rhettinger, smichr
Priority: normal Keywords:

Created on 2003-02-13 07:10 by smichr, last changed 2022-04-10 16:06 by admin. This issue is now closed.

Messages (2)
msg14597 - (view) Author: Christopher Smith (smichr) Date: 2003-02-13 07:10
The following refer to doc page 
http://www.python.org/doc/current/lib/module-turtle.html

1) The "circle()" function of the turtle module does not behave as 
indicated in the documentation.  The doc's say that this command 
should...

"Draw a circle with radius radius whose center-point is where the 
pen would be if a forward(radius) were called."

In fact, it draws a circle centered on the point that is radius units to 
the left of the turtle.

2) Further information is given in the second paragraph that starts:

"If extent is not a full circle, one endpoint of the arc is the current 
pen position."

It might be good to add "...and the angle of the turtle is changed by 
extent."  i.e., if it started at 0 degrees and you drew 90 degrees of 
a circle, the turtle is now facing at 90 degrees.

/c
msg14598 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2003-02-21 03:23
Logged In: YES 
user_id=80475

Fixed.
Doc/lib/libturtle.tex 1.5
History
Date User Action Args
2022-04-10 16:06:47adminsetgithub: 37978
2003-02-13 07:10:00smichrcreate