[matplotlib-devel] Re: [Pythonmac-SIG] [Matplotlib-users] Matplotlib Universal Package

2006-05-29 Thread Charlie Moad
This patch fixed osx's numpy issue and doesn't cause problems on win32 or linux for me. I went ahead and committed it. Thanks Andrew. - Charlie On 5/24/06, Andrew Straw <[EMAIL PROTECTED]> wrote: Dear Sam, Could you please try the following patch? I think it will fix the issue, but I'm not s

Re: [matplotlib-devel] Re: collection initializer color handling vs quiver

2006-05-29 Thread Jordan Dawe
from collections import LineCollection class Arrow(LineCollection): """ An arrow """ def __init__( self, x, y, dx, dy, width=1.0, arrowstyle='solid', **kwargs ): """Draws an arrow, starting at (x,y), direction and length given by (dx,dy) the width of the arrow i

[matplotlib-devel] Quiver

2006-05-29 Thread Jordan Dawe
Ok, I have some questions about what the protocol for patch submission should be, in terms of 'completeness' of the patch. I have a patch for the quiver function that is half done... it has converted the arrows from patches to linecollections, and it will accept arbitrary X and Y coordinates f