23
$\begingroup$

Normally, I used ViewPoint in the code in Plot3D. Most of the time, I will use mouse to rotate the 3D object to get a better view point. The problem is, when I find the best view point for me, is there any way to get the ViewPoint parameters for the rotated scene, such as {-1.25, 2.31, 1.8}, so I can repeat the plot or use it in the future?

$\endgroup$
1
  • 4
    $\begingroup$ Simply edit the output cell and wrap Options[..., ViewPoint] around the already rotated output. The graphics should be in the place of .... ViewVertical may also change during rotating, as well as some other parameters. $\endgroup$ Commented Nov 27, 2016 at 23:38

2 Answers 2

27
$\begingroup$

One way is to set a symbol equal to the initial default viewpoint.

v = Options[Plot3D, ViewPoint][[1, 2]] (* {1.3, -2.4, 2.} *) 

Use that symbol dynamically in the plot. Monitor the dynamic value of v and note the value when the rotated plot is pleasing to you:

Plot3D[ Sin[x + y^2], {x, -3, 3}, {y, -2, 2}, ViewPoint -> Dynamic[v] ] 

Mathematica graphics

Dynamic[v] (* {2, -0.9, 2.5} *) 
$\endgroup$
27
$\begingroup$

Here is how you can extract the ViewPoint family options from a graphic after interaction. Once you have the options, simply do a copy-paste them in the initial code :

enter image description here

$\endgroup$
4
  • $\begingroup$ Duplicate of this, but maybe more attractive ? Should I delete or move my answer ? $\endgroup$ Commented Mar 10, 2017 at 14:24
  • 2
    $\begingroup$ This is a far more intuitive, and in my opinion more useful answer to the question. $\endgroup$ Commented Aug 2, 2019 at 8:34
  • 1
    $\begingroup$ good answer. Very easy to use. $\endgroup$ Commented Sep 10, 2019 at 17:23
  • $\begingroup$ Beautiful use of AbsoluteOptions. Love it. $\endgroup$ Commented Nov 29, 2024 at 12:23

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.