Setting Viewpoint with Azimuth, Elevation, and distance

3 次查看(过去 30 天)
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 个评论
Yung-Hsiang Chen
Yung-Hsiang Chen 2017-1-20
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.

请先登录,再进行评论。

采纳的回答

Massimo Zanetti
Massimo Zanetti 2016-12-13
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.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by