On Sun, Jun 29, 2008 at 5:31 PM, Owen <[EMAIL PROTECTED]> wrote: > > The first example here: > http://www.sagemath.org/doc/html/tut/node21.html > .. shows creating a circle plot via: > L = [[cos(pi*i/100),sin(pi*i/100)] for i in range(200)] > p = polygon(L, rgbcolor=(1,1,0)) > p.save() ## or p.show() > > When I try this, I get an ellipse! Or more precisely, the plot has > unequal axis scaling. > > Here's a picture: > http://backspaces.net/temp/Safari116.png
Use this instead: L = [[cos(pi*i/100),sin(pi*i/100)] for i in range(200)] p = polygon(L, rgbcolor=(1,1,0)) p.save(aspect_ratio=1) ## or p.show() This is being tracked at http://trac.sagemath.org/sage_trac/ticket/3534 --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sage-support URLs: http://www.sagemath.org -~----------~----~----~----~------~----~------~--~---
