Stefan Behnel-3 wrote: > > alexander....@gmail.com wrote: >> I think the speed function may be broken from the turtle graphics package >> >> >> "from turtle import * >> >> speed('fastest') >> >> forward(50)" >> >> >> I have tried all of the different speed settings, but I get no change >> in the turtle's speed.... does anyone know how to fix this? > > Use "xturtle"? :) > > http://ada.rg16.asn-wien.ac.at/~python/xturtle/ > > Stefan > -- > http://mail.python.org/mailman/listinfo/python-list > >
The Python library's implementation of turtle graphics is slow to the point that many applications are simply impractical. I recently converted a program to Python/turtle graphics that was originally written by my son using Processing; the result of the conversion is that the time to draw the balls increased by a factor of roughly 50! (The Processing version takes less than 0.1 seconds to generate the image, while the Python version takes almost 5 seconds on the same computer). It would be good if this performance problem can be fixed, either by patching the current implementation of turtle graphics, or by replacing it with xturtle if that is better. http://old.nabble.com/file/p27732940/balls.py balls.py -- View this message in context: http://old.nabble.com/Turtle-graphics-speed%28%29.-Seems-broken-tp15504443p27732940.html Sent from the Python - python-list mailing list archive at Nabble.com. -- http://mail.python.org/mailman/listinfo/python-list