[sage-support] Re: Resize Jmol window + aspect ratio question.

2008-11-04 Thread Tanveer Gani
Thanks! Both suggestions worked. However, documentation brought up by tab-completion did not mention figsize or aspect_ratio (tab-completion for show() does mention figsize). The documentation seems to be dated. Tanveer. On Nov 4, 2:29 pm, "William Stein" <[EMAIL PROTECTED]> wrote: > On Tue, Nov

[sage-support] Re: Resize Jmol window + aspect ratio question.

2008-11-04 Thread William Stein
On Tue, Nov 4, 2008 at 12:03 PM, Tanveer Gani <[EMAIL PROTECTED]> wrote: > > Is there a way to resize the Jmol window? plot3d doesn't seem to take > a size parameter You can use the figsize parameter to change the figure size: var('x,y') plot3d(sin(x*y), (x,-pi, pi), (y,-pi,pi),figsize=3) This