How to apply tranparency in some parts of figure

1 次查看(过去 30 天)
I am try to make a figure using m_map. I want to apply transparency just in "m_gshhs_h", but I can not.
I tried these and it did not work:
a = m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k'); alpha (a, 0.5)% error
m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k', 'alpha');% error
m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k'); Alpha (0.5)% that all figure makes transparency
Please, does anyone have any idea how to help me?

采纳的回答

Adam
Adam 2016-12-13
'FaceAlpha', alphaVal
is the property, value pair you want for a patch. I don't know m_map, but
m_gshhs_h ('patch', [.7 .7 .7], 'edgecolor', 'k', 'FaceAlpha', 0.5)
ought to work.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Lighting, Transparency, and Shading 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by