美文网首页
LightingModel

LightingModel

作者: AntKing | 来源:发表于2020-08-21 18:14 被阅读0次

    struct LightingModel

    Constants specifying the lighting and shading algorithm to use for rendering a material.
    指定用于渲染光线和阴影的算法 模式

    image.png

    what is the fuck 高光

    高光是一种美术用语,指光源照射到物体然后反射到人的眼睛里时,物体上最亮的那个点就是高光,高光不是光,而是物体上最亮的部分。

    static let blinn: SCNMaterial.LightingModel
    合并了环境,漫反射和镜面反射特性的阴影,其中使用Blinn-Phong公式计算镜面反射高光。
    
    static let constant: SCNMaterial.LightingModel
    仅包含环境照明的均匀阴影。
    
    static let lambert: SCNMaterial.LightingModel
    仅包含环境和漫反射属性的阴影。
    
    static let phong: SCNMaterial.LightingModel
    Shading that incorporates ambient, diffuse, and specular properties, where specular highlights are calculated using the Phong formula.
    合并了环境,漫反射和镜面反射特性的阴影,其中使用Phong公式计算镜面反射高光。
    
    static let physicallyBased: SCNMaterial.LightingModel
    基于真实的物理灯光和材质抽象的阴影。
    

    相关文章

      网友评论

          本文标题:LightingModel

          本文链接:https://www.haomeiwen.com/subject/iahpjktx.html