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 Garrett.Grimsley
Recipients Garrett.Grimsley, gregorlingl
Date 2014-03-27.16:16:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395936990.77.0.953738655575.issue21077@psf.upfronthosting.co.za>
In-reply-to
Content
A circle is supposed to draw upon a click event, but if speed is set to 0 it appears that the circle fails to draw and all existing lines are erased.

A screenshot of the behavior with radius = 20 can be seen here: http://i.imgur.com/y7z87AN.png This state can be replicated by completing an entire game worth of clicks.



Someone replying to my StackOverflow question noted that if the radius of the circle is increased (radius = 200 for example) it becomes apparent that the circle  is actually drawing, but the existing lines are still erased. 

A screenshot of the behavior with radius = 200 can be seen here: http://i.imgur.com/gYeOlnT.png This state can be replicated by clicking bottom middle, middle middle, then bottom right, in that order.


You will note that only lines on the clickable Tic-Tac-Toe board are erased, and lines outside of it remain intact.


Load my code and click the Tic-Tac-Toe board to reproduce the bug. Please use my exact code, as you WILL fail to reproduce the bug by simply importing turtle and drawing a circle. To change the circle radius in my code locate the radius variable assignment in the draw_circle() function. It is located on line 77 of the code.


Source code in file is also available here: http://bpaste.net/show/189364/
Relevant StackExchange overflow link: http://stackoverflow.com/questions/22432679/turtle-circle-makes-lines-disappear/22445757
History
Date User Action Args
2014-03-27 16:16:30Garrett.Grimsleysetrecipients: + Garrett.Grimsley, gregorlingl
2014-03-27 16:16:30Garrett.Grimsleysetmessageid: <1395936990.77.0.953738655575.issue21077@psf.upfronthosting.co.za>
2014-03-27 16:16:30Garrett.Grimsleylinkissue21077 messages
2014-03-27 16:16:30Garrett.Grimsleycreate