s: I think ax.getFigure().bbox is getting the whole picture so this is why
it is slower.
De : Auré Gourrier [mailto:aurelien.gourr...@yahoo.fr]
Envoyé : jeudi 15 octobre 2009 10:32
À : matplotlib-users@lists.sourceforge.net
Objet : Re: [Matplotlib-users] [Solved] Little issue with blitting
>On Tue, Oct 13, 2009 at 5:06 PM, Laurent Dufr?chou
> wrote:
>> Hey, coparing on how GTK2 example is done I've seen a difference between the
>> two!
>>
>> In QT4Agg example and WX example the code use:
>>
>> canvas.copy_from_bbox(ax.bbox)
>> replacing all occurrence of ax.bbox with ax.get_figure(
On Tue, Oct 13, 2009 at 5:06 PM, Laurent Dufréchou
wrote:
> Hey, coparing on how GTK2 example is done I've seen a difference between the
> two!
>
> In QT4Agg example and WX example the code use:
>
> canvas.copy_from_bbox(ax.bbox)
> replacing all occurrence of ax.bbox with ax.get_figure().bbox sol
Hey, coparing on how GTK2 example is done I've seen a difference between the
two!
In QT4Agg example and WX example the code use:
canvas.copy_from_bbox(ax.bbox)
replacing all occurrence of ax.bbox with ax.get_figure().bbox solved all the
issue I add.
Perhaps we should correct the examples.
I ca