Re: turtles slowing down

2011-07-21 Thread Lee Harr
>  there > was a steady slowing down of turtles as time goes The problem is that when the turtle "draws" it does not just put marks on the canvas, it actually creates new canvas items. Canvas items aren't just pixels on the canvas, they are full-fledged objects which (if you wanted to) you could

Re: turtles slowing down

2011-07-19 Thread Terry Reedy
On 7/19/2011 6:02 PM, EricC wrote: Hi, I am a newbie - I have been teaching myself Python 3 since a few months ago. My “self assignments” include some purely for fun. Among them was using the turtle module to have multiple turtles running around on the screen. Recently one such fun turtle “proj

turtles slowing down

2011-07-19 Thread EricC
Hi, I am a newbie - I have been teaching myself Python 3 since a few months ago. My “self assignments” include some purely for fun. Among them was using the turtle module to have multiple turtles running around on the screen. Recently one such fun turtle “project” showed strange behavior that I c