Well.. that worked. I didn't tried at first because the docs says it
can't be filled...
cheers
2009/5/18 Roban Hultman Kramer :
> Have you tried specifying a value for fill?
>
> 2009/5/18 Carlos "Guâno" Grohmann :
>> Hello all
>>
>> I'm having some troubles with Arcs in MPL. Using the following
Thanks Mike,
Actually, I don't want it to be filled, but the wedge did what I
wanted, so I'm sticking with it.
cheers
2009/5/18 Michael Droettboom :
> Arcs exist as an optimization to render really large circles and ellipses
> with high accuracy.
>
> An elliptical arc. Because it performs v
Arcs exist as an optimization to render really large circles and
ellipses with high accuracy.
An elliptical arc. Because it performs various optimizations, it
can not be filled.
If you want to draw a filled, yet partial, circle, I believe you want to
use Wedge.
Cheers,
Mike
Carlos G
Have you tried specifying a value for fill?
2009/5/18 Carlos "Guâno" Grohmann :
> Hello all
>
> I'm having some troubles with Arcs in MPL. Using the following code:
>
> circ = Arc( (0,0), width=2, height=2, angle=0.0,
> theta1=0.0, theta2=360.0, ec=None, fc=None)
> axes.add_p
Hello all
I'm having some troubles with Arcs in MPL. Using the following code:
circ = Arc( (0,0), width=2, height=2, angle=0.0,
theta1=0.0, theta2=360.0, ec=None, fc=None)
axes.add_patch(circ)
gives:
Traceback (most recent call last):
File "pystereo22.py", line 524, in