Re: Graphics - Manipulate Question
- To: mathgroup at smc.vnet.net
- Subject: [mg78878] Re: Graphics - Manipulate Question
- From: dh <dh at metrohm.ch>
- Date: Thu, 12 Jul 2007 05:08:51 -0400 (EDT)
- References: <f72bq9$cao$1@smc.vnet.net>
Hi David, set the PlotRange to All, this (nearly, beside some hickups) works: PlotRange -> All hope this helps, Daniel David Park wrote: > Here is an example from the Rotate help notebook: > > Graphics[Rotate[Circle[Scaled[{1,0}]],Pi,{0,0}],Axes->True] > > It displays the complete circle but the axes only extend to +/- 1. The > purpose of the example is to illustrate the effect of Rotate on an object > with scaled coordinates. Suppose we want to see the rotation as a continuous > action. Here is an attempt using Manipulate: > > Manipulate[ > Graphics[ > Rotate[Circle[Scaled[{1, 0}]], \[Theta], {0, 0}], > Axes -> True, > PlotRange -> 1, > PlotRangeClipping -> False, > PlotRegion -> {{.3, .7}, {.3, .7}}, > ImageSize -> 300], > {\[Theta], 0, \[Pi]}] > > How would one obtain a display that showed the full circle as the initial > example did? >