Display question about transparent intersected surfaces
Mostrar comentarios más antiguos
Why when I set the intersected surfaces' transparent with 'FaceAlpha', the intersected regions display invalid.
Code:
x=[0:0.01:3];
y=[0:0.01:5];
[X,Y]=meshgrid(x,y);
Z1=X*1.1+Y*1;
Z2=X+Y*1.1;
mesh(X,Y,Z1,'FaceColor','b','EdgeAlpha',0,'FaceAlpha',0.5)
hold on
mesh(X,Y,Z2,'FaceColor','r','EdgeAlpha',0,'FaceAlpha',0.5)
The figure

Respuesta aceptada
Más respuestas (1)
Hao Li
el 13 de Jul. de 2018
0 votos
Categorías
Más información sobre Graphics Performance en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

