Why is text() unable to orient output in 3 axes?
8 次查看(过去 30 天)
显示 更早的评论
text(x,y,z,string,'rotation',theta) is only capable of rotating about one axis, and even more annoyingly the text rotates on its own when I change the view angle via the rotation toolbar tool. I'd like to be able to place text in 3-space but have it lie "flat" in the X-Y plane with some specified rotation in that plane. Any workarounds? Any plans at MathWorks to implement theta-phy-xsi rotation control?
0 个评论
回答(1 个)
Jan
2017-10-25
Why is text() unable to orient output in 3 axes?
It is the idea of text() to operate in 2D.
Any workarounds?
You have to draw the text in 2D, capture the part of the screen and use it as TextureMap on surface object. See e.g. https://www.mathworks.com/matlabcentral/fileexchange/15018-createbuttonlabel-string-varargin- .
Any plans at MathWorks to implement theta-phy-xsi rotation control?
This is the public forum and the answers are given voluntarily by other Matlab users (which are partially employed by MathWorks, but do not act officially here). Therefore you will not get a reliable answer here to what MathWorks plans for the future. Personally, I do not expect that 3D text has a high priority, because it is rarely used.
2 个评论
Jan
2017-10-26
The orientation of the text command is not occult, but well defined: It is 2D in the screen plane and the rotation around the vector normal to the screen can be controlled.
Remember that "theta-phi-xsi" is not uniquely defined - the old problem with the order of Euler angles and the definition of the axes. Then some prefer to rotate the object, some the coordinate system.
ImageMagick creates nice and powerful renderings of text. Then mapping it to a surface afterwards seems to be a good solution currently.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!