MathGroup Archive 2001

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: size of graphics for animation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg32125] Re: [mg32114] size of graphics for animation
  • From: BobHanlon at aol.com
  • Date: Fri, 28 Dec 2001 02:41:41 -0500 (EST)
  • Sender: owner-wri-mathgroup at wolfram.com

In a message dated 12/27/01 4:40:37 AM, erich.neuwirth at univie.ac.at writes:

>when i create a table of graphics for animation,
>how can i enforce a non default size (larger than default)
>for all the graphics being created?
>
>for s single graphic, resizing with the mouse is convenient,
>but for animation all the graphs hat to have exactly the same size.
>how do i accomplish that?

In general you need to manually set the PlotRange for both x and y directions 
to insure that the "context" stays fixed.  To make the image larger than the 
default use the option ImageSize.  Compare animations for

Table[Plot[x, {x, 0, xmax}], {xmax, 1, 10}];

Table[Plot[x, {x, 0, xmax}, 
      PlotRange -> {{0,10},{0,10}}, 
      ImageSize -> 350], {xmax, 1, 10}];


Bob Hanlon
Chantilly, VA  USA


  • Prev by Date: Re: movie export
  • Next by Date: Re: size of graphics for animation
  • Previous by thread: RE: size of graphics for animation
  • Next by thread: Re: size of graphics for animation