Azzera filtri
Azzera filtri

Setting Viewpoint with Azimuth, Elevation, and distance

5 visualizzazioni (ultimi 30 giorni)
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 Commento
Yung-Hsiang Chen
Yung-Hsiang Chen il 20 Gen 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.

Accedi per commentare.

Risposta accettata

Massimo Zanetti
Massimo Zanetti il 13 Dic 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.

Più risposte (0)

Categorie

Scopri di più su Graphics Object Properties in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by