필터 지우기
필터 지우기

How to apply tranparency in some parts of figure

조회 수: 1 (최근 30일)
Camila Hashimoto
Camila Hashimoto 2016년 12월 13일
댓글: Camila Hashimoto 2016년 12월 13일
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