Re: [Matplotlib-users] can't update transform for polygon animation

2010-02-16 Thread John Hunter
On Tue, Feb 16, 2010 at 10:54 AM, John Jameson wrote: > Hi John, > > Thanks for your help on the animation with patches, and now > I'm trying to do the same idea for matplotlib.patches.Polygon > ala your method for a circle patch: > >    initialize: >        xy =[[x0,y0],[x1,y1],[x2,y2]] >      po

[Matplotlib-users] can't update transform for polygon animation

2010-02-16 Thread John Jameson
Hi John, Thanks for your help on the animation with patches, and now I'm trying to do the same idea for matplotlib.patches.Polygon ala your method for a circle patch: initialize: xy =[[x0,y0],[x1,y1],[x2,y2]] poly = Polygon( xy, animated=True,lw=2,fill=False ) add_patch