• matlab函数——shading函数


    函数说明:

    是阴影函数控制曲面和图形对象的颜色着色,即用来处理色彩效果的,包括以下三种形式:

    shading faceted:默认模式,在曲面或图形对象上叠加黑色的网格线;

    shading flat:是在shading faceted的基础上去掉图上的网格线;

    shading interp:对曲面或图形对象的颜色着色进行色彩的插值处理,使色彩平滑过渡 ;

    实例:该实例来源matlab帮助,可直接运行

    <span style="font-size:14px;">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
    title('Interpolated Shading')</span>
  • 相关阅读:
    day06
    样式表
    框架&样式表
    表单
    用表格制作百度首页
    汉企教育实训第第二天
    汉企教育实训第一天感想
    BootStrap前端框架
    MySQL存储过程、存储函数介绍
    日常记录
  • 原文地址:https://www.cnblogs.com/yibeimingyue/p/13535209.html
Copyright © 2020-2023  润新知