On Wed, Jan 7, 2009 at 12:21 AM, rev <[email protected]> wrote: > > Taking example from the tutorial: > c=circle((0,0), .5, rgbcolor=(1,1,0)) > c.show(figsize=[5,5]) > shows me a well-proportioned circle. > My question is how do I save this circle to file? > save(c, filename="plot.eps") > exports ellipse which it should. Controlling aspect ratio in show() > seems to be the only way of doing things.
sage: c.save(figsize=[5,5],filename='plot.eps') > > > > -- William Stein Associate Professor of Mathematics University of Washington http://wstein.org --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
