Β
DiscLJΒ
Β
- Shading in CG is computing the pixels colors
- It is very much about lighting
Β
Shading and Lighting
- Given the surface normal is and the light direction vector is
- By rotating the surface, we will have the angle and which we can use to calculate the light intensity
Β
Lambertian (Diffuse) Material
- This way, we can model a relation between the light intensity and the surface color property given that is the original surface color
- By adding another factor which represents the amount of light coming from the light source, we can have a full formula to calculate the pixel color and it is called Lambertian (Diffuse) Material
In this model, the reflection happens in all directions in equal amount
Phong Specular Reflections
Β
- Reflections viewing depends on the viewer direction
- It is one of specular reflection models
- Given the perfect reflection direction vector and the viewer direction vector
- Properties:
- Material props:
- the specular reflection color
- the shininess of the material (opacity of shininess)
- the light intensity
- The phong material model is defined according to the formula
- The formula of the perfect reflection direction
Β
Phong Material Model
- Itβs defined by combining Lambertian (Diffuse) Material model and Phong Specular Reflections
- When we want to implement it, we should consider eliminating the negative values of cosine. So finally it becomes:
Β
29:00
Β