Borrar filtros
Borrar filtros

Setting Viewpoint with Azimuth, Elevation, and distance

5 visualizaciones (últimos 30 días)
viet le
viet le el 13 de Dic. de 2016
Comentada: Yung-Hsiang Chen el 20 de En. de 2017
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 comentario
Yung-Hsiang Chen
Yung-Hsiang Chen el 20 de En. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

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

Más respuestas (0)

Categorías

Más información sobre Graphics Object Properties en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by