- 左为逐顶点高光Phong模型
- 中为逐像素高光Phong模型
- 右为逐像素高光Blinn-Phong模型
- Phong模型$$C{specular=(c{light}*m{specular})max(0, \vec{v}·\vec{r})^{m{Gloss}}}$$
- Blinn-Phong模型$$C{specular=(c{light}*m{specular})max(0, \vec{n}·\vec{h})^{m{Gloss}}}$$
- $$\vec{h} = \frac{\vec{v}·\vec{i}}{|v||i|}$$
|
|
|
|