Re: Graphics - Manipulate Question
- To: mathgroup at smc.vnet.net
- Subject: [mg78880] Re: Graphics - Manipulate Question
- From: Januk <ggroup at sarj.ca>
- Date: Thu, 12 Jul 2007 05:09:54 -0400 (EDT)
- References: <f72bq9$cao$1@smc.vnet.net>
Hi David,
On Jul 11, 6:35 am, "David Park" <djmp... at comcast.net> wrote:
<snip>
> How would one obtain a display that showed the full circle as the initial
> example did?
<snip>
Get rid of the PlotRange option.
Manipulate[
Graphics[
Rotate[Circle[Scaled[{1, 0}]], \[Theta], {0, 0}],
Axes -> True,
PlotRangeClipping -> False,
PlotRegion -> {{.3, .7}, {.3, .7}},
ImageSize -> 300],
{\[Theta], 0, \[Pi]}]
Januk