New submission from Lita Cho:

When you call turtle.shapetransform with a transformation matrix, nothing 
happens. You have to call turtle.shapesize or turtle.shearfactor first before 
turtle.shapetransform will take affect. Here is an example.

turtle.shapetransform(2,0,0,2) 
turtle.shapesize(1) 
turtle.shapetransform(2,0,0,2)

Nothing happens with the first call of shapetransform, but after calling 
shapesize, shapetransform then doubles in size, like it should.

----------
components: Library (Lib)
messages: 221068
nosy: Lita.Cho
priority: normal
severity: normal
status: open
title: turtle.shapetransform doesn't transform the turtle on the first call

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue21812>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to