How to define the Y direction in a GUI axes
1 次查看(过去 30 天)
显示 更早的评论
Hello,
Is it possible to rotate a segment of 30°?
In fact, i tried the rotate function :rotate(h,direction,alpha) but i can't figure out which one of my axis corresponds to The Ydirection.
The line to be rotated is : h2=line([-a,a],[wp,wp],'color','k','linewidth',1);
Any ideas please?
Thank you in advance for your help
0 个评论
回答(1 个)
Image Analyst
2013-8-19
The y direction/axis is the vertical axis. You can set the direction to be increasing going up or going down. To rotate coordinates, just use the usual 2 by 2 array [cos sin; -sin cos] to get your new coordinates. Then call line() with those.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 3-D Scene Control 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!