I'm having a problem using subplot to show the difference between lighting on two separate graphs
显示 更早的评论
I'm trying to demonstrate the difference between phong and flat lighting on a sphere but when I try to plot them together using subplot both of my graphs are in flat lighting. If you plot the two spheres individually there is nothing wrong with the lighting but when plotted together they are both flat. What is the correct way to plot both of these with the correct lighting?
[xx,yy,zz]=sphere(30);
subplot(1,2,1)
surf(xx,yy,zz);
h = findobj('Type', 'surface');
set(h, 'FaceLighting','phong', 'FaceColor', 'interp')
light('Position', [1 3 2]);
light('Position', [-3 -1 3]);
material shiny;
axis equal;
title('phong');
subplot(1,2,2)
surf(xx,yy,zz);
h = findobj('Type', 'surface');
set(h, 'FaceLighting','flat', 'FaceColor', 'interp')
light('Position', [1 3 2]);
light('Position', [-3 -1 3]);
material shiny;
axis equal;
title('flat');
采纳的回答
更多回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!