MathGroup Archive 2007

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

Search the Archive

Re: determine viewpoint value during V6 3d rotation

  • To: mathgroup at smc.vnet.net
  • Subject: [mg82434] Re: determine viewpoint value during V6 3d rotation
  • From: Albert <awnl at arcor.net>
  • Date: Sat, 20 Oct 2007 05:50:44 -0400 (EDT)
  • References: <ff9tbf$6g5$1@smc.vnet.net>

Hi,

> In V6, it is possible to rotate a ParametricPlot3D (or the like) in
> real time. Is it possible to determine what ViewPoint->() value a
> rotation results in?

This is one of assumingly infinitly many possibilities:

DynamicModule[{vp = {1.3, -2.4, 2.}},
  Column[{
    plot =
     Plot3D[Sin[x y], {x, 0, 1}, {y, 0, 1}, ViewPoint -> Dynamic[vp],
      ImageSize -> 500],
    Dynamic[vp]
    }]
  ]

hth,

albert


  • Prev by Date: Re: ToExpression again
  • Next by Date: Animate with Slider Box Value
  • Previous by thread: Re: determine viewpoint value during V6 3d rotation
  • Next by thread: Re: determine viewpoint value during V6 3d rotation