From: John H. <jdh...@ac...> - 2005-02-14 23:02:56
|
>>>>> "Robert" == Robert Leftwich <ro...@le...> writes: Robert> the resulting tkagg or png output has the triangles Robert> pointing in odd directions (sometimes even at 45 degrees). On line 238 in collection.py, flip the sin and cos order self._verts = zip( r*sin(theta), r*cos(theta) ) This was correct in 0.71 but I undid it (wrongly) in 0.72 because the sin and cos looked to be in the wrong order and I assumed it was a bug. Now I realize there was a method to my madness, because 0 degrees is pointing up and not to the right.... Something for the bug-fix release! Thanks for the report. JDH |