classification
Title: circle doesn't work correctly after radians()
Type: Stage:
Components: Library (Lib) Versions: Python 2.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: loewis Nosy List: gregorlingl, loewis (2)
Priority: high Keywords

Created on 2006-06-29 21:38 by gregorlingl, last changed 2006-07-03 10:20 by loewis.

Messages (2)
msg28989 - (view) Author: Gregor Lingl (gregorlingl) Date: 2006-06-29 21:38
>>> from turtle import *
>>> radians()
>>> circle(100,pi/2)  # turtle doesn't draw
>>> degrees()
>>> circle(100,90) # turtle draws again, but goes
                   # in the wrong direction

You must see it.
msg28990 - (view) Author: Martin v. Löwis (loewis) Date: 2006-07-03 10:20
Logged In: YES 
user_id=21627

Thanks for the report. Fixed in r47210.
History
Date User Action Args
2006-06-29 21:38:26gregorlinglcreate