Re: [Matplotlib-users] plot() not using alpha value from RGBA tuple

2011-08-17 Thread Eric Firing
On 08/16/2011 12:42 AM, Vlastimil Brom wrote: 2011/8/16 Eric Firingefir...@hawaii.edu: On 07/25/2011 08:21 AM, Ben Breslauer wrote: I think that I have found the problem here. Line2D.draw() (and I presume other Artist subclasses) calls gc.set_foreground(self._color) ...

Re: [Matplotlib-users] plot() not using alpha value from RGBA tuple

2011-08-16 Thread Eric Firing
On 07/25/2011 08:21 AM, Ben Breslauer wrote: I think that I have found the problem here. Line2D.draw() (and I presume other Artist subclasses) calls gc.set_foreground(self._color) ... gc.set_alpha(self._alpha) self._color is defined by the color kwarg, whether it be a hex value, 3-tuple,

Re: [Matplotlib-users] plot() not using alpha value from RGBA tuple

2011-08-16 Thread Vlastimil Brom
2011/8/16 Eric Firing efir...@hawaii.edu: On 07/25/2011 08:21 AM, Ben Breslauer wrote: I think that I have found the problem here.  Line2D.draw() (and I presume other Artist subclasses) calls gc.set_foreground(self._color) ... gc.set_alpha(self._alpha) self._color is defined by the color

Re: [Matplotlib-users] plot() not using alpha value from RGBA tuple

2011-08-16 Thread Ben Breslauer
On Tue, Aug 16, 2011 at 12:22 AM, Benjamin Root ben.r...@ou.edu wrote: On Monday, August 15, 2011, Ben Breslauer bbresla...@gmail.com wrote: Hi, Has anyone else noticed this behavior? For the devs, do you prefer a github bug to the SF list? Ben I have not personally observed

Re: [Matplotlib-users] plot() not using alpha value from RGBA tuple

2011-08-15 Thread Ben Breslauer
Hi, Has anyone else noticed this behavior? For the devs, do you prefer a github bug to the SF list? Ben On Mon, Jul 25, 2011 at 2:21 PM, Ben Breslauer bbresla...@gmail.com wrote: I think that I have found the problem here. Line2D.draw() (and I presume other Artist subclasses) calls

Re: [Matplotlib-users] plot() not using alpha value from RGBA tuple

2011-08-15 Thread Benjamin Root
On Monday, August 15, 2011, Ben Breslauer bbresla...@gmail.com wrote: Hi, Has anyone else noticed this behavior? For the devs, do you prefer a github bug to the SF list? Ben I have not personally observed this, but usually, people don't specify rgba tuples for plot. I think the lack of

Re: [Matplotlib-users] plot() not using alpha value from RGBA tuple

2011-07-25 Thread Ben Breslauer
I think that I have found the problem here. Line2D.draw() (and I presume other Artist subclasses) calls gc.set_foreground(self._color) ... gc.set_alpha(self._alpha) self._color is defined by the color kwarg, whether it be a hex value, 3-tuple, 4-tuple, or something else. self._alpha is defined