MathGroup Archive 2007

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

Search the Archive

Re: Graphics - Manipulate Question

  • To: mathgroup at smc.vnet.net
  • Subject: [mg78963] Re: Graphics - Manipulate Question
  • From: Helen Read <hpr at together.net>
  • Date: Fri, 13 Jul 2007 06:16:57 -0400 (EDT)
  • References: <f72bq9$cao$1@smc.vnet.net> <f74r93$7r8$1@smc.vnet.net>

Januk wrote:
> 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]}]

And add some ImagePadding so it doesn't jump all over the place.

Manipulate[Graphics[
Rotate[Circle[Scaled[{1, 0}]], \[Theta], {0, 0}],
Axes -> True,
PlotRangeClipping -> False,
PlotRegion -> {{.3, .7}, {.3, .7}},
ImageSize -> 300,ImagePadding->35],
{\[Theta], 0, \[Pi]}]


-- 
Helen Read
University of Vermont


  • Prev by Date: LinksBar
  • Next by Date: Re: NDSolve and plots
  • Previous by thread: Re: Graphics - Manipulate Question
  • Next by thread: BesselK problems at large argument?