Hi Erik, On Thu, Sep 25, 2008 at 5:05 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I'm working my way through the tutorial and I'm having a problem with > one of them. 2.5.1 at this page http://www.sagemath.org/doc/tut/node18.html > has a circle plot, but I keep getting an ellipse on my screen because > it's y axis is not at the same resolution as the x axis. It has the > command: > > sage: circle((0,0), 1, rgbcolor=(1,1,0))
You want to show the image with an aspect ratio of one: sage: c = circle((0,0), 1, rgbcolor=(1,1,0)) sage: c.show(aspect_ratio=1) --Mike --~--~---------~--~----~------------~-------~--~----~ To post to this group, send email to sage-support@googlegroups.com 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 -~----------~----~----~----~------~----~------~--~---