Looking for CMPT 370 A - Computer Graphics (SP 2025) test answers and solutions? Browse our comprehensive collection of verified answers for CMPT 370 A - Computer Graphics (SP 2025) at learn.twu.ca.
Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!
Which equation (Lambert's Law) shows the relationship between the amount of light reflected on the perfect diffuse reflector (Lambertian surface) and the angle between the normal vector of the surface and the incoming light?
Which is NOT true about texture mapping?
Which shading is described by the following?
This is one of the smooth shading methods. The lighting (light intensity) is calculated at each vertex and interpolated across the surface for interior pixels. If polygon mesh surfaces have high curvatures, this shading may show edges.
The following shows an excerpt of the code for a vertex lighting shader. What does the code with red colour calculate?
vec3 pos = -(uModelViewMatrix * aPosition).xyz;vec3 light = uLightPosition.xyz;vec3 L = normalize( light - pos ); vec3 E = normalize( -pos ); vec3 H = normalize( L + E );
What is the benefit of using Blinn-Phong reflection model instead of Phong reflection model?
What is described by the following?
This is an interpolation technique. For each point of the surface, the surface normals are interpolated to calculate the light intensity.
What is represented by the following equation?
In (real-time) Computer Graphics, what is important? (Choose the best answer based on what you have learned in class.)
Projecting a polygon from a point light source onto a surface is one of the oldest methods of creating a shadow. If we project a shadow onto the ground at y = 0, which perspective projection matrix is used?
What type of surface is described by the following?
This has a smooth surface that shows highlights (as seen in the figure below) resulting from incoming light being reflected in directions concentrated close to the direction of a perfect reflection.
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!