How to keep aspect ratio fixed, when rotating 3D objects in GUI?
23 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I know that you can fix the aspect ration by right clicking on the axes and choosing: Rotate Options > Fixed Aspect Ratio Axes. But I'd like my GUI to do this automatically without every time manually specifying that? Is there a way to problematically achieve this? (ex.: including a command in the opening function)
thanks
0 commentaires
Réponse acceptée
Walter Roberson
le 19 Juin 2012
DataAspectRatio and DataAspectRatioMode are among the properties cleared when a cla() is done, whether implicitly or explicitly. cla() is done implicitly each time you invoke a high-level graphics routine such as plot() and you do not have "hold on" or "hold all" turned on for the axes.
Therefore, instead of setting the properties in your opening function, set the properties after you plot.
Plus de réponses (4)
Sean de Wolski
le 19 Juin 2012
2 commentaires
Walter Roberson
le 19 Juin 2012
Sean, you had "DaraAspectRatioMode" . How old did you say your kids were? ;-)
hana
le 19 Juin 2012
1 commentaire
Sean de Wolski
le 19 Juin 2012
hmmm, so you have something like:
set(handles.axes1,'dataaspectratiomode','manual');
set(handles.axes1,'dataaspectratio',[1 1 1]);
and it still comes undone?
Voir également
Catégories
En savoir plus sur 3-D Scene Control dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!