Re: [Matplotlib-users] Making an interactive plot faster

2013-06-25 Thread Thomas Robitaille
Hi Mike, Thanks for the suggestion - however, this doesn't change the FPS. From my experiments so far, it seems using draw_artist would be the best bet, but any ideas why it doesn't work with the MacOS X backend? https://github.com/matplotlib/matplotlib/issues/166 Cheers, Tom On 24 June 2013 1

Re: [Matplotlib-users] Making an interactive plot faster

2013-06-25 Thread Michiel de Hoon
Hi Thomas, As explained in this issue: https://github.com/matplotlib/matplotlib/issues/166 draw_artist does not work because it is being called from outside the event loop (or, to be exact, because draw_artist will only work if it is called from inside the drawing callback function that is calle