Re: [matplotlib-devel] [Fwd: Re: Patch for scatter plot legend enhancement]

2008-10-16 Thread Manuel Metz
Jae-Joon Lee wrote: Hi Manuel, I think it is a good to introduce the update_from method in Collections. But, I'm not sure if it is a good idea to also update sizes, paths and rotation (in RegularPolyCoolection). My impression is that update_from method is to update gc related attributes.

Re: [matplotlib-devel] [Fwd: Re: Patch for scatter plot legend enhancement]

2008-10-16 Thread Manuel Metz
Manuel Metz wrote: Jae-Joon Lee wrote: Hi Manuel, I think it is a good to introduce the update_from method in Collections. But, I'm not sure if it is a good idea to also update sizes, paths and rotation (in RegularPolyCoolection). My impression is that update_from method is to update gc

Re: [matplotlib-devel] suggestion for the interpolation in imshow()

2008-10-16 Thread Andrew Hawryluk
Eric Firing wrote: Andrew Hawryluk wrote: The interpolation algorithm used in imshow() can produce spurious results, as has been noted before: _http://article.gmane.org/gmane.comp.python.matplotlib.general/12062_ This happens because the data is converted to RGB before the

Re: [matplotlib-devel] Line Integral Convolution

2008-10-16 Thread Rob Hetland
On Oct 13, 2008, at 4:59 PM, Anne Archibald wrote: but I have written a simple line integral convolution operator I'd be happy to contribute. Anne- I would be interested in seeing the code, regardless of where it finds a home. Would you mind sharing, or would you rather wait? -Rob

Re: [matplotlib-devel] SF.net SVN: matplotlib:[6217] trunk/matplotlib/lib/matplotlib/axes.py

2008-10-16 Thread Eric Firing
Manuel, Although it doesn't hurt, I don't think it is worthwhile changing range to xrange. From the 2.5 docs: xrange( [start,] stop[, step]) This function is very similar to range(), but returns an ``xrange object'' instead of a list. This is an opaque sequence type which yields the same

Re: [matplotlib-devel] [Fwd: Re: Patch for scatter plot legend enhancement]

2008-10-16 Thread Erik Tollerud
I see most of your points and the current version is definitely better in many respects... I had originally tried to update the collections rather than make new ones, but didn't understand enough of the internals to implement the update_from method. But regarding the size variation... I think the

[matplotlib-devel] minor fix to animation example

2008-10-16 Thread Tony S Yu
I noticed that one of the animation examples is missing some import statements. Also, the diff below includes a small change to the shebang line of another example. Cheers, -Tony anim_imports.diff Description: Binary data

[matplotlib-devel] navigation toolbar keyboard shortcuts patch

2008-10-16 Thread Paul Ivanov
Hi, I'm a big fan of keyboard shortcuts, so I decided to add these guys to lib/matplotlib/backend_bases.py I'm not sure if this is too much, and maybe these should be configurable down the line, but here's my first stab at it, what do you all think? in the same order as they appear in the

Re: [matplotlib-devel] [Fwd: Re: Patch for scatter plot legend enhancement]

2008-10-16 Thread Jae-Joon Lee
Thanks Manuel. Yes, we need rotation value and etc, but my point is, do we need to update it within the update_from() method? Although my preference is not to do it, it may not matter much as far as we state what this method does clearly in the doc. And, in your patch, I don't think updating the