Re: [Matplotlib-users] ellipse in log-log

2008-10-06 Thread John Hunter
On Mon, Oct 6, 2008 at 7:15 AM, Michael Droettboom <[EMAIL PROTECTED]> wrote: > In 0.98 ellipse is drawn using bezier curves, which do not scale > correctly in log-scaled plots. > > As an alternative, you can use a RegularPolygon with a high number of > vertices (this is exactly what 0.91 did). He

Re: [Matplotlib-users] ellipse in log-log

2008-10-06 Thread Michael Droettboom
In 0.98 ellipse is drawn using bezier curves, which do not scale correctly in log-scaled plots. As an alternative, you can use a RegularPolygon with a high number of vertices (this is exactly what 0.91 did). Mike Yves Revaz wrote: > Dear list, > > How is it possible to draw a nice ellipse in a

[Matplotlib-users] ellipse in log-log

2008-10-06 Thread Yves Revaz
Dear list, How is it possible to draw a nice ellipse in a log-log plot using patches.Ellipse ? With matplotlib 0.91 I was able to to that using : Ellipse((log10(100),log10(100)), width=100, height=100,alpha=0.5) Now, it seems that something has changed in version 0.98 and I do not need to ad th