Re: [Matplotlib-users] moving line

2014-07-26 Thread esr
Hi Mike, I have the same problem and I am interested how dou you solve it. Regards Enzo -- View this message in context: http://matplotlib.1069221.n5.nabble.com/moving-line-tp43249p43686.html Sent from the matplotlib - users mailing list archive at Nabble.com. -

Re: [Matplotlib-users] moving line

2014-04-19 Thread Michael Mossey
On 4/19/2014 3:51 PM, Raymond Smith wrote: Hi Mike, Have you tried blitting? That prevents the draw from redrawing everything on the plot, allowing it to only redraw the single line that's moving, which should help any issues with speed. See some of the examples

Re: [Matplotlib-users] moving line

2014-04-19 Thread Raymond Smith
Hi Mike, Have you tried blitting? That prevents the draw from redrawing everything on the plot, allowing it to only redraw the single line that's moving, which should help any issues with speed. See some of the exampleswith FuncAnimation and als