[New-bugs-announce] [issue21812] turtle.shapetransform doesn't transform the turtle on the first call

Lita Cho report at bugs.python.org
Fri Jun 20 08:14:40 CEST 2014


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 <report at bugs.python.org>
<http://bugs.python.org/issue21812>
_______________________________________


More information about the New-bugs-announce mailing list