Using the phong reflectance model, the strength of the specular highlight is…

2019

Using the phong reflectance model, the strength of the specular highlight is determined by the angle between

  1. A.

    the view vector and the normal vector

  2. B.

    the light vector and the normal vector

  3. C.

    the light vector and the reflected vector

  4. D.

    the reflected vector and the view vector

Attempted by 65 students.

Show answer & explanation

Correct answer: D

Answer: The strength of the specular highlight is determined by the angle between the reflected vector and the view vector.

Key formula: the Phong specular term is proportional to (R · V)^s, where R is the reflection of the light vector about the surface normal, V is the view vector (both unit length), and s is the shininess exponent. Larger s produces tighter, sharper highlights.

  • Compute the reflection vector: R = 2 (N · L) N − L (assuming unit vectors).

  • Evaluate the dot product between R and V: cos θ = max(R · V, 0).

  • Raise cos θ to the shininess exponent: specular = k_s * (cos θ)^s, where k_s is the specular coefficient.

Note: The Blinn-Phong variant uses the halfway vector H = normalize(L + V) and computes (N · H)^s as an efficient and often visually similar approximation to the original Phong term.

Explore the full course: Nta Ugc Net Paper 2

Loading lesson…