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.

Author cajetan.rodrigues
Recipients cajetan.rodrigues, docs@python, guchao, terry.reedy
Date 2020-05-06.18:58:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1588791522.51.0.056103012729.issue40283@roundup.psfhosted.org>
In-reply-to
Content
When I checked, I found the following:

turtle.circle(50, 50)   # counter-clockwise
turtle.circle(-50, -50) # counter-clockwise
turtle.circle(-50, 50)  # clockwise
turtle.circle(50, -50)  # clockwise

So it seems both radius and extent need to be of the same signage to effect a counter-clockwise draw. However, for the 2 cases where extent is negative, the draw happens through the turtle's tail rather than the head. Looks weird.
History
Date User Action Args
2020-05-06 18:58:42cajetan.rodriguessetrecipients: + cajetan.rodrigues, terry.reedy, docs@python, guchao
2020-05-06 18:58:42cajetan.rodriguessetmessageid: <1588791522.51.0.056103012729.issue40283@roundup.psfhosted.org>
2020-05-06 18:58:42cajetan.rodrigueslinkissue40283 messages
2020-05-06 18:58:42cajetan.rodriguescreate