3-D Plot Covering Text

조회 수: 3 (최근 30일)
autumn
autumn 2019년 6월 6일
댓글: autumn 2019년 6월 7일
I have plotted a sphere with points on its surface. After labeling those points with text, I noticed a problem. If the orientation of the sphere is changed, the sphere overlaps the text so that the text is no longer visible. How can I correct this issue?
sdafasdf.PNG

채택된 답변

Walter Roberson
Walter Roberson 2019년 6월 6일
That can happen. text() is written into 3D space in a fixed location in data coordinates, and when you rotate, it is possible for the location to become hidden behind the object. That is expected to some degree: if you were to label cities on a globe then as you rotated the globe you would not typically want the cities "on the other side of the world" to have visible labels.
Reducing the alpha of the graphics object can reduce the problem, as then the graphics object does not hide the text as easily.
Sometimes, though, what you need is two or more axes, possibly linkaxes()'d, one containing the graphics and the one in front containing the text, since the one in front will overlay the one behind even through they are in the same data plane.
Or sometimes you should just use data tips.
  댓글 수: 1
autumn
autumn 2019년 6월 7일
After a lot of messing around with axes advice you gave, I finally decided to try to change the alpha value like you suggested. I'm very happy with the outcome! Thank you!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Labels and Annotations에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by