首页 > 其他 > 详细

MATLAB light material lighting

时间:2014-10-22 12:23:39      阅读:252      评论:0      收藏:0      [点我收藏+]

bubuko.com,布布扣

clf;
[X,Y,Z]=sphere(40);
colormap(jet)
subplot(1,2,1),surf(X,Y,Z),axis off square,shading interp
light(‘position‘,[0 -10 1.5],‘style‘,‘infinite‘)

material shiny
subplot(1,2,2),surf(X,Y,Z,-Z),axis off square ,shading flat
light;
lighting flat
light(‘position‘,[-1,-1,-2],‘color‘,‘y‘)
light(‘position‘,[-1,0.5,1],‘style‘,‘local‘,‘color‘,‘w‘)
set(gcf,‘Color‘,‘w‘)

 

MATLAB light material lighting

原文:http://www.cnblogs.com/wen-z/p/4042501.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!