Re: [matplotlib-devel] question about transforms

2008-03-10 Thread Michael Droettboom
With the qt4agg backend, I also get no cursor with "useblit=False", but when "useblit=True" it seems to work just fine -- I don't see any shearing. By shearing I assume you mean the image is warped like a parallelogram? Or do mean tearing, in that it isn't updating fast enough? (FWIW, I don'

Re: [matplotlib-devel] question about transforms

2008-03-10 Thread Michael Droettboom
Sorry, I didn't see this latest e-mail before I replied before. I see the shearing now that I've adjusted window size. Maybe it could be related to the fact that width != span? Anyway, I'll investigated further and get back. Cheers, Mike Darren Dale wrote: > On Friday 07 March 2008 4:58:03

[matplotlib-devel] unable to commit to svn

2008-03-10 Thread Darren Dale
Sourceforge is rejecting my commits, as if my username or password were incorrect. Is anyone else able to commit to svn? Darren - This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2

Re: [matplotlib-devel] question about transforms

2008-03-10 Thread Michael Droettboom
No, I didn't see this message, but I think we arrived at the same conclusion. I think the solution is just to calculate the width and height in the same way in both places (copy_to_bbox and the Qt blitting code in Python). We can't change bbox.bounds, since many other parts of the code rely o

Re: [matplotlib-devel] question about transforms

2008-03-10 Thread Darren Dale
That sounds fine to me. I just wanted to make sure that I wasn't glossing over a bug that could turn up elsewhere. Thanks, Darren On Monday 10 March 2008 08:46:36 am Michael Droettboom wrote: > No, I didn't see this message, but I think we arrived at the same > conclusion. I think the solution

Re: [matplotlib-devel] unable to commit to svn

2008-03-10 Thread Michael Droettboom
I just saw this today myself. Apparently my password has "expired" (first time in years I've seen that happen). I logged in to the sf.net web interface, it asked for my old and new passwords, and then I was able to use the new password with SVN. Maybe this is a new policy? Mike Darren Dale w

[matplotlib-devel] ginput-like function for an arbitrary blocking function

2008-03-10 Thread Jae-Joon Lee
Hi all, I found the recent ginput function by Gael is really cool. On the other hand, I often need to take an input from other sources (I mean, other than matplotlib itself, e.g., raw_input). I don't think running a blocking function, such as a raw_input, without freezing the figure canvas has bee

Re: [matplotlib-devel] ginput-like function for an arbitrary blocking function

2008-03-10 Thread Gael Varoquaux
On Mon, Mar 10, 2008 at 07:09:03PM -0400, Jae-Joon Lee wrote: > I often need to take an input from other sources > (I mean, other than matplotlib itself, e.g., raw_input). > I don't think running a blocking function, such as a raw_input, > without freezing the figure canvas > has been easy in matpl

Re: [matplotlib-devel] ginput-like function for an arbitrary blocking function

2008-03-10 Thread Gael Varoquaux
On Mon, Mar 10, 2008 at 07:09:03PM -0400, Jae-Joon Lee wrote: > I often need to take an input from other sources > (I mean, other than matplotlib itself, e.g., raw_input). > I don't think running a blocking function, such as a raw_input, > without freezing the figure canvas > has been easy in matpl

[matplotlib-devel] Arrow bugfix

2008-03-10 Thread Michael Fitzgerald
Hi all, I encountered problems with the Arrow patch, which broke sometime recently. I'm attaching a fix (diff against svn r4999). Best, Mike arrow_patch.diff Description: Binary data - This SF.net email is sponsored

Re: [matplotlib-devel] ginput-like function for an arbitrary blocking function

2008-03-10 Thread Jae-Joon Lee
Hi Gaƫl, I mostly work in an interactive shell (ipython), and if I simply call a blocking function (like raw_input) from the prompt, it also blocks the event loop of the matplotlib gui backend (it happens for GtkAgg, but not for TKAgg. I'm not sure with other backends, but I thought TKAgg is a spe