美文网首页
光照模型

光照模型

作者: SwordMaster | 来源:发表于2018-03-01 13:57 被阅读39次

    漫反射

    (兰伯特光照模型): Cdiffuse= Clight * Mdiffuse * max(0,(n*l))

    (半兰伯特光照模型): Cdiffuse = Clight * Mdiffuse * max(0,(n*l)*0.5 + 0.5)

    高光反射

    (Phong光照模型): Cspecular = Clight * Mspecular * pow( max(0,(v,r)), mgloss)

    (Blinn Phong光照模型): Cspecular = Clight * Mspecular * pow( max(0,(n,h)) mgloss)

    其中(h = v+l / |v+l|)

    相关文章

      网友评论

          本文标题:光照模型

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