Home Forums Games202-高质量实时渲染 [作业0]代码中是Phong模型不是BlingPhong模型

Viewing 0 reply threads
  • Author
    Posts
    • #17167 Score: 0
      刘好念
      Participant

      Assignment0.pdf中说代码中使用的是Blinn-Phong着色模型,但是代码中使用的是不是Phong模型?
      截图如下:
      作业描述:
      2.4 Blinn-Phong 着色模型
      实际代码:
      `
      float spec = 0.0;
      vec3 reflectDir = reflect(-lightDir, normal);
      spec = pow(max(dot(viewDir, reflectDir), 0.0), 35.0);
      `

Viewing 0 reply threads
  • You must be logged in to reply to this topic.