matlab函数——shading函数函数说明:
是阴影函数控制曲⾯和图形对象的颜⾊着⾊,即⽤来处理⾊彩效果的,包括以下三种形式:
shading faceted:默认模式,在曲⾯或图形对象上叠加⿊⾊的⽹格线;
shading flat:是在shading faceted的基础上去掉图上的⽹格线;
shading interp:对曲⾯或图形对象的颜⾊着⾊进⾏⾊彩的插值处理,使⾊彩平滑过渡 ;
实例:该实例来源matlab帮助,可直接运⾏
<span >subplot(3,1,1)
sphere(16) %绘制球体
axis square
shading flat
title('Flat Shading')
subplot(3,1,2)
sphere(16)
axis square
shading faceted
title('Faceted Shading')
subplot(3,1,3)
sphere(16)
axis square
shading interp
用subplot函数title('Interpolated Shading')</span>
运⾏结果:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。