How do I make faces transparent???
이전 댓글 표시
The question is as same as the title, "How do I make faces transparent???"
By using "guide.m", I should make some GUI programs.
To draw a figure, I used the command, "patch.m"
While I use that command, I can make faces coloful by using the RGB map. But, as I mentioned before, I cannot make them transparent.. It seems to be related to the "alpha" value. But This is all things I could know.
Please give me the solution to solve my problem.
Thanks.
답변 (1개)
the cyclist
2011년 8월 11일
Does this work for you?
hp = patch([0 1 1 0],[0 0 1 1],'r');
set(hp,'FaceAlpha',0.1); % Nearly transparent.
카테고리
도움말 센터 및 File Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!