Re: [matplotlib-devel] [Matplotlib-users] License, freetype

2017-02-17 Thread Joe Kington
Well, if Freetype were only distributed under the GPL, you couldn't distribute matplotlib in binary form without providing the source code. However, Freetype is distributed under more than one license. (see: https://www.freetype.org/license.html ) Because it's distributed under a BSD-style

Re: [matplotlib-devel] Questions related to draw_gouraud_triangle when writting a backend

2015-08-11 Thread Joe Kington
If I remember correctly, draw_gouraud_triangle is used by tripcolor when shading='gouraud'. Basically, it's a gradient mesh in Adobe terms. I'm sure it's used in a few other places as well. As for why it's not implement in some backends, it's probably either an oversight, or gradient meshes

Re: [matplotlib-devel] Fwd: SciPy 2015 CFP Email 2

2015-06-23 Thread Joe Kington
to update my proposal to include Joe? Ben On Mon, Mar 30, 2015 at 8:45 PM, Joe Kington joferking...@gmail.com wrote: High praise, coming from you guys. Thanks! :) -Joe On Mon, Mar 30, 2015 at 6:53 PM, Paul Hobson pmhob...@gmail.com wrote: Joe, You should introduce yourself as that guy who

Re: [matplotlib-devel] Fwd: SciPy 2015 CFP Email 2

2015-03-30 Thread Joe Kington
If you don't mind a non-core person doing the tutorial, I'll be there this year, and I'd be happy to be Ben's backup for teaching it. Cheers! -Joe On Sun, Mar 29, 2015 at 9:17 PM, Thomas Caswell tcasw...@gmail.com wrote: Ben, Have you sorted out if you can make scipy this year and does anyone

Re: [matplotlib-devel] Fwd: SciPy 2015 CFP Email 2

2015-03-30 Thread Joe Kington
/mailbox On Mon, Mar 30, 2015 at 4:52 PM, Thomas Caswell tcasw...@gmail.com wrote: +1 from me. I suspect many people got their start learning mpl from you on SO ;) Tom On Mon, Mar 30, 2015 at 7:17 PM Joe Kington joferking...@gmail.com wrote: If you don't mind a non-core person doing

Re: [matplotlib-devel] unused variables

2014-03-06 Thread Joe Kington
On Thu, Mar 6, 2014 at 3:03 PM, Skip Montanaro s...@pobox.com wrote: On Thu, Mar 6, 2014 at 2:51 PM, Nelle Varoquaux nelle.varoqu...@gmail.com wrote: The convention is to use a simple _. mode, _, dev, nlink, uid, gid, size, _, _, _ = os.stat(/etc/hosts) Which is pylint-compliant, but

Re: [matplotlib-devel] RFE: shortcut for [xyz|]label and [xyz]lim?

2014-02-05 Thread Joe Kington
On Wed, Feb 5, 2014 at 3:46 PM, Benjamin Root ben.r...@ou.edu wrote: IIRC, you can use plt.setp() for this purpose: http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.setp Essentially, anything that would come after the set_ part of an object's method can be a keyword. So, I think

Re: [matplotlib-devel] [Matplotlib-users] Feedback on an implementation of a matlab-ish datacursor

2013-03-13 Thread Joe Kington
On 13 March 2013 10:08, Phil Elson pelson@gmail.com wrote: Thanks for this Joe, mpldatacursor looks like an excellent piece of work - I for one will be installing and using it regularly. Thanks for sharing! On 13 March 2013 03:58, Joe Kington joferking...@gmail.com wrote: I

Re: [matplotlib-devel] Matplotlib property support

2013-01-16 Thread Joe Kington
On Jan 16, 2013 2:05 PM, Todd toddr...@gmail.com wrote: On Wed, Jan 16, 2013 at 2:55 PM, Benjamin Root ben.r...@ou.edu wrote: On Wed, Jan 16, 2013 at 2:42 PM, Todd toddr...@gmail.com wrote: Currently matplotlib uses set_ and get_ functions for reading and writing values. However, since 2.6

Re: [matplotlib-devel] mpl site down?

2012-10-19 Thread Joe Kington
Github has been under a DDOS for the past couple of days: https://status.github.com/ It's probably(?) related, but lots of other github pages sites seem to be up... On Fri, Oct 19, 2012 at 3:54 PM, Benjamin Root ben.r...@ou.edu wrote: Not just you, I can't get on either. I noticed this about

[matplotlib-devel] Data cursor for matplotilb.widgets

2012-01-22 Thread Joe Kington
I've recently been playing around with a widget intended to be similar to matlab's data cursor. Would this be useful for inclusion into matplotlib.widgets? https://gist.github.com/1659108 At the moment, it doesn't inherit from the base Widget class, but that's easily changed. On the other