首页 > 其他 > 详细

三维图像的特殊效果

时间:2020-04-08 22:03:54      阅读:62      评论:0      收藏:0      [点我收藏+]

三维图像的特殊效果

透视

[X0,Y0,Z0]=sphere(30);
X=2*X0;Y=2*Y0;Z=2*Z0;
surf(X0,Y0,Z0);
shading interp
hold on,mesh(X,Y,Z),colormap(hot),hold off
hidden off
axis equal,axis off 

图像

技术分享图片

镂空

利用“非数”NaN,对图形进行镂空处理。

P=peaks(30);P(18:20,9:15)=NaN;
surfc(P);colormap(summer)
light(‘position‘,[50,-10,5]),lighting flat
material([0.9,0.9,0.6,15,0.4])

图像

技术分享图片

三维图像的特殊效果

原文:https://www.cnblogs.com/rongyupan/p/12662515.html

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