Borrar filtros
Borrar filtros

how to open 3D figure always from the same angle (not the angle it appears rn)?

12 visualizaciones (últimos 30 días)
Hi guys and girls,
I'm pretty new to MatLab and i'm stuck. How can i open my 3D- rigidBodyTree from a different point of view than it is right now?
Is there an option f.e. that i can rotate die figure, then kinda "save" it and MatLab always opens the Figure from that position/angle?
Thanks a lot!

Respuesta aceptada

Vilém Frynta
Vilém Frynta el 22 de Nov. de 2022
Editada: Vilém Frynta el 22 de Nov. de 2022
When you are rotating the figure manually, there will be current azimut and elevation displayed. You need to click the "cube + arrow" icon first.
As my explanation is not the best, I have made screenshot for you to understand easier:
You can write down these numbers and then use them to manually set your desired angle by view(azimut, elevation).
Examples of default angle and edited angle below:
% Default angle
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(X,Y,Z)
colormap gray
% Edited angle
[X,Y] = meshgrid(-8:.5:8);
R = sqrt(X.^2 + Y.^2) + eps;
Z = sin(R)./R;
mesh(X,Y,Z)
colormap gray
view(-23,28) % setting the azimut and elevation from the numbers
  1 comentario
moinmoinnoob69
moinmoinnoob69 el 27 de Nov. de 2022
Thank you :)
I've already tried to change camera position and so on that is kinda works, but your way is way easier :D

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by