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 aroberge
Recipients aroberge
Date 2015-03-13.15:42:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1426261372.66.0.413514291582.issue23660@psf.upfronthosting.co.za>
In-reply-to
Content
The turtle module using screen coordinates such that the vertical coordinate increases vertically on the screen. This orientation is different from the traditional orientation for graphics programs.

It is possible to set coordinates with the "normal" orientation using the setworldcoordinates function, e.g.

    >>> from turtle import *
    >>> setworldcoordinates(0, 400, 400, 0)

With the above choice, the y coordinate increases as the turtle moves down on the screen.  However, doing so inverts the role of left() and right().

I have attached a "diff" file which introduces a change needed so that left() and right() behave correctly with this different orientation.
History
Date User Action Args
2015-03-13 15:42:52arobergesetrecipients: + aroberge
2015-03-13 15:42:52arobergesetmessageid: <1426261372.66.0.413514291582.issue23660@psf.upfronthosting.co.za>
2015-03-13 15:42:52arobergelinkissue23660 messages
2015-03-13 15:42:52arobergecreate