On Tue, 26 Dec 2006, Eric Firing apparently wrote:
> 1) edgecolor=facecolor is not the same as not drawing the
> edge; it leads to artifacts that can be very damaging.
Strongly agree!
Cheers,
Alan Isaac
-
Take Surveys
John Hunter wrote:
>> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes:
> Eric> We did decide to make linewidth=0 suppress drawing the line,
> Eric> and this is in the ps backend. Most likely it is not in all
> Eric> backends, but it is in pdf, svg, and agg as well as ps. In
>
>
> "Eric" == Eric Firing <[EMAIL PROTECTED]> writes:
Eric> We did decide to make linewidth=0 suppress drawing the line,
Eric> and this is in the ps backend. Most likely it is not in all
Eric> backends, but it is in pdf, svg, and agg as well as ps. In
Would it not be better to catc
John Hunter wrote:
> Whether or not linewidth=0 is respected may be backend dependent. In
> postscript it means use the smallest possible line. We have discussed
> overriding this at the mpl level to impose consistency, but am not
> sure what the status of this is. The safest best is to set the
> "Sergio" == Sergio Drumond Ventura <[EMAIL PROTECTED]> writes:
Sergio> Hi, I am a new user of matplotlib. First of all I would
Sergio> like to say that the people working on matplotlib is doing
Sergio> a great job.
Sergio> Well, I have tried to use the 'fill', but I cannot
Hi,
I am a new user of matplotlib.
First of all I would like to say that the people working on matplotlib is
doing a great job.
Well, I have tried to use the 'fill', but I cannot get rid of the lines.
I have tried to use 'linewidth=0' at the end, but it did not work.
Could somebody, please, tel
Sergio,
I think the line you see comes from plotting two shape on top one another. You
may want to redefine your polygon:
the easier would be something like:
tt = concatenate((t,t[::-1]))
vtx = concatenate((s3,s2[::-1]))
fill(tt, vtx, '#e9ccce', linewidth=0)
With the first command, you build a s
Hi,
I am a new user of matplotlib.
First of all I would like to say that the people working on matplotlib is
doing a great job.
Well, I have tried to use the 'fill', but I cannot get rid of the lines.
I have tried to use 'linewidth=0' at the end, but it did not work.
Could somebody, please, tel