On 08/16/2011 12:42 AM, Vlastimil Brom wrote:
> 2011/8/16 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(sel
On Tue, Aug 16, 2011 at 12:22 AM, Benjamin Root wrote:
>
>
> On Monday, August 15, 2011, Ben Breslauer 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, peopl
2011/8/16 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 kw
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,
>
On Monday, August 15, 2011, Ben Breslauer 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 response is due to
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 wrote:
> I think that I have found the problem here. Line2D.draw() (and I presume
> other Artist subclasses) calls
>
> gc.set_foreground(self
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
Hi,
I'm trying to fade some data, using alpha values, that I am plotting with
Axes.plot(). I can recreate this problem with 1 line of pylab.plot. If I
use
pylab.plot([1,2,3],[1,4,9], color=(1,0,0,.2), linewidth=7)
then I get the equivalent of
pylab.plot([1,2,3],[1,4,9], color=(1,0,0), linewid