Setting Viewpoint with Azimuth, Elevation, and distance

2 views (last 30 days)
Hello everyone. I have a problem need your help.
I would like to viewpoint from any position (phi=0:360, and theta=90:0), but the distance from centre to the viewpoint is exactly 100 cm.
I saw command view(az,el) but it is not included distance.
Do you have any solution for this problem. Thank in advance.
  1 Comment
Yung-Hsiang Chen
Yung-Hsiang Chen on 20 Jan 2017
With the view command, you can query and set the current perspective, and with the xlim, ylim, and zlim command, you can query and set the current zoom.
For example
[az,el] = view; %# queries the perspective view(az,el); %# sets the perspective
xl = xlim; %# queries the x-axis limits xlim(xl); %# sets the x-axis limits Alternatively, you can modify the XData, YData, ZData and possibly CData properties of your plot objects when you are updating plots in a sequence. This will be faster than recreating the figure, axes, and objects at each iteration.

Sign in to comment.

Accepted Answer

Massimo Zanetti
Massimo Zanetti on 13 Dec 2016
Hi Viet, in order to control visualization in the current axes, consider these parameters also:
CameraPosition
CameraPositionMode
CameraTarget
CameraTargetMode
CameraUpVector
CameraUpVectorMode
CameraViewAngle
CameraViewAngleMode
and set them to your needs. You can get the full list of available parameters of the current axes by typing gca in the command line.

More Answers (0)

Categories

Find more on Graphics Object Properties in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!