Re: [matplotlib-devel] _transform limitations

2006-07-30 Thread John Hunter
> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes: Eric> John, I think we really need copy (and maybe deepcopy) Eric> functions that work with all transforms, not just Separable Eric> transforms. This looks fairly easy except for one thing: Eric> the transform creation functi

Re: [matplotlib-devel] wx-style layout engine for matplotlib: mplsizer

2006-07-30 Thread Bill Baxter
On 7/30/06, Andrew Straw <[EMAIL PROTECTED]> wrote: > The basic > idea is to create a layout engine for matplotlib. Not wanting to > (re-)invent an API, I decided simply to imitate the layout engine I knew > best, which is wxPython. Very cool!

Re: [matplotlib-devel] Matplotlib as a separate process

2006-07-30 Thread Ken McIvor
On Jul 24, 2006, at 9:16 PM, Bill Baxter wrote: > I think all these problems could be fixed if the display interface > were turned into a separate process that communicates with the Python > program using pipes or some other IPC mechanism. I used this > technique in a (C/C++) image debugging utili

Re: [matplotlib-devel] imshow with PS backend

2006-07-30 Thread Gael Varoquaux
On Thu, Jul 27, 2006 at 01:33:42PM +0100, JIM MacDonald wrote: > Another way to do it is to pass extra > command line options to ps2pdf (-dAutoFilterColorImages=false > -sColorImageFilter=FlateEncode should do it for colour images). I > thought embedding it in the PS file would be more flexible.

Re: [matplotlib-devel] wx-style layout engine for matplotlib: mplsizer

2006-07-30 Thread Ken McIvor
Andrew, This looks very cool, and I'm looking forward to playing around with it. Thanks for the hard work! Shooting from the hip, here are some initial comments. I may be able to submit patches for some of the more innocuous items later in the week. 1. It appears that as_sizer_element()

Re: [matplotlib-devel] [ 1530104 ] Slider should grab mouse

2006-07-30 Thread Ken McIvor
On Jul 30, 2006, at 8:07 AM, Bill Baxter wrote: > I went ahead and implemented this yesterday on a long plane flight. > The changed files (backend_bases.py, and widgets.py) are attached to > the above tracker entry. Also I changed backend_wx.py to grab the > mouse generally when you click on the

Re: [matplotlib-devel] Matplotlib as a separate process

2006-07-30 Thread Bill Baxter
Hi Ken, Thanks for the reply. On 7/31/06, Ken McIvor <[EMAIL PROTECTED]> wrote: > On Jul 24, 2006, at 9:16 PM, Bill Baxter wrote: > > I think all these problems could be fixed if the display interface > > were turned into a separate process that communicates with the Python > > program using pipes

Re: [matplotlib-devel] [ 1530104 ] Slider should grab mouse

2006-07-30 Thread Bill Baxter
On 7/31/06, Ken McIvor <[EMAIL PROTECTED]> wrote: > On Jul 30, 2006, at 8:07 AM, Bill Baxter wrote: > > I went ahead and implemented this yesterday on a long plane flight. > > The changed files (backend_bases.py, and widgets.py) are attached to > > the above tracker entry. Also I changed backend_

[matplotlib-devel] extra rc parameters for axes

2006-07-30 Thread Malte Marquarding
Is it possible to add another level to the axes rc parameters, so the x and y axes can be controlled independently. axes.xaxis.* axes.yaxis.* I am happy to add this feature if people think this is a good addition. Cheers, Malte.