Shading of viscircles weird behavior
5 次查看(过去 30 天)
显示 更早的评论
When I export a figure via
exportgraphics(axis,filename);
multiple times, I get the strange behavior that after some exports circles drawn via
viscircles(axis,[x, y],r,'EnhanceVisibility',true);
are shaded white (just the white circle remains which is shaded to improve visibility).
This worked fine for weeks, but now I added the yellow surface-plot below and now this behavior appears.
Can someone explain why this happens and what to do that the export works (while 'EnhanceVisibility', true remains)?
1 个评论
采纳的回答
Walter Roberson
2024-7-15
viscircles() uses 2D coordinates, with an implicit ZData of 0.
When you draw a surface, the surface has 3D coordinates.
When 2D data and 3D data are mixed, there are several possible outcomes:
- the object that is drawn later "wins" at Z coordinate 0
- the 3D object "wins" at Z coordinate 0
- the 2D object "wins" at Z coordinate 0
- the 2D object "wins" everywhere, drawn "on top" of the 3D object no matter what the 3D coordinates are
- the 3D object "wins" everwhere, hiding the 2D object everywhere
In practice, this is controlled by the axes SortMethod property
the default of which is "depth". But "depth" doesn't talk explicitly about what happens for 2D objects (are they treated as 3D with Z = 0?) versus 3D objects, and does not talk explicitly about what happens when there is a surface and a line at the same depth. In practice 2D objects are not always treated the same way as Z = 0...
To be safer, you should switch your viscircles() into plot3() calls with Z = 0.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!