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 Lita.Cho
Recipients Lita.Cho
Date 2014-06-20.06:14:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1403244880.01.0.345411438078.issue21812@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2014-06-20 06:14:40Lita.Chosetrecipients: + Lita.Cho
2014-06-20 06:14:40Lita.Chosetmessageid: <1403244880.01.0.345411438078.issue21812@psf.upfronthosting.co.za>
2014-06-20 06:14:39Lita.Cholinkissue21812 messages
2014-06-20 06:14:39Lita.Chocreate