Re: [Matplotlib-users] Problem with Arcs

2009-05-18 Thread Guâno
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

Re: [Matplotlib-users] Problem with Arcs

2009-05-18 Thread Guâno
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

Re: [Matplotlib-users] Problem with Arcs

2009-05-18 Thread Michael Droettboom
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

Re: [Matplotlib-users] Problem with Arcs

2009-05-18 Thread 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 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

[Matplotlib-users] Problem with Arcs

2009-05-18 Thread Guâno
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