[matplotlib-devel] Updating MPlot3D to a more recent matplotlib.

2009-03-02 Thread Jonathan Taylor
Hi, I saw that 3D plotting was dropped from matplotlib since the last time I used it. Unfortunately, it is pretty necessary for some of the work I am doing. Thus, I have started the process of refactoring the code to work with recent versions of matplotlib. Right now, it is still in very early

Re: [matplotlib-devel] File format for plots

2009-03-02 Thread Gael Varoquaux
On Mon, Mar 02, 2009 at 01:49:38PM -0600, Ryan May wrote: >Other than the automatic regeneration from latex, what you want sounds >like what we already have: small python scripts. >In general, I'm completely amazed by how many people want to develop a new >markup/script language to

Re: [matplotlib-devel] File format for plots

2009-03-02 Thread Ryan May
On Sun, Mar 1, 2009 at 8:17 AM, sam tygier wrote: > Eric Firing wrote: > > Sandro Tosi wrote: > >> Hi Sam, > >> > >> On Wed, Feb 25, 2009 at 09:35, sam tygier > wrote: > >>> I think this topic has come up before, but i don't think anything has > >>> resulted from it. > >>> > > Correct, because t

Re: [matplotlib-devel] hashing of FontProperties

2009-03-02 Thread Michael Droettboom
Jae-Joon Lee wrote: > The following code show how the FontProperties is currently hashed. > > def __hash__(self): > l = self.__dict__.items() > l.sort() > return hash(repr(l)) > > > The hash does not account user's rcParams setting. And due to the font > caching, findfo