Rotate rectangle x number of degrees when using imrect or alternative function
3 次查看(过去 30 天)
显示 更早的评论
Hi everybody,
I would like to allow a user to draw a rectangle over a plot to highlight some data. This seems entirely possible using imrect, however I sometimes need the rectangle to be rotated 60 degrees to the x axis. I can't find any mention of rotation in the help or by using get(h).
I've looked for some help on this function but strangely it doesn't seem to be widely used. Does anybody know how to rotate a rectangle when using imrect, or are there alternatives which do allow it?
Thanks,
Rod.
0 个评论
采纳的回答
Image Analyst
2014-4-5
You can get the vertices of the corners. Then use the rotation matrix (see Wikipedia) to rotate it about its center by any angle. Then redraw the rectangle with plot().
2 个评论
Image Analyst
2014-4-5
编辑:Image Analyst
2014-4-5
Rod, it's trivial. Just a 2 by 2 matrix [cos, -sin, sin, cos] multiplied by the "old" coordinates. See the attached demo to rotate an ellipse, and a star.
rotationArray = [cos(rotationAngle), -sin(rotationAngle); sin(rotationAngle), cos(rotationAngle)];
% Rotate the diagram
rotatedArray = vertices * rotationArray;
更多回答(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!