W Randolph Franklin home page
... (old version)
ComputerGraphicsFall2010/ home page Login


Computer Graphics Fall 2010 group home


NAME:


EMAIL:


RIN:

Rensselaer Polytechnic Institute, Troy NY USA. ECSE-4750 Computer Graphics Fall 2009 Final Exam.

This exam is open book: you may use calculators and any paper books and notes that you brought with you. You may not use computers or communication devices, or share material with other students.

Answer every question.There are 3 pages with 25 questions.

⇒You may write FREE as the correct answer to any three questions.⇐

  1. _____/1 Suppose that you have 10 triangles that can be arranged into a triangle fan. How many vertices would you have to specify to OpenGL if you use the fact that they can be arranged into a triangle fan.



  2. ____/1 Which shader is executed first in the graphics pipeline: vertex or fragment?



  3. ____/1 Consider a 3D triangle with vertices (0,0,0), (1,1,1), (1,-1,2). What is the z value of the point in the triangle with x=0, y=1?







  4. ____/1 Consider a sheet of paper with a red object printed on it. IOW the ink reflects red light. However, that ink also reflects a lot of the green and blue light. Why?



  5. ____/1 High spatial frequencies can be bad. Name the technique used to remove them.



  6. ____/1 Name the effect which accentuates the visibility of the common edge between two adjacent bands of slightly different brightness.



  7. ____/1 Where in your visual system is this implemented: retina, optic nerve, visual cortex, pineal gland, big toe?



  8. ____/1 Name the OpenGL technique that takes a texture map and creates a hierarchy of coarser and coarser versions of it.



  9. ____/1 What problem of pixels and texels does that solve?



  10. ____/1 Why can the following not possibly be a 3D Cartesian rotation matrix: {$$ \begin{pmatrix} 1&1&0\\0&1&0\\0&-1&1\end{pmatrix} $$}



  11. ____/1 If a=(4,5,6) then write {$(a\times p)\, a$} as a matrix depending on {$a$} times {$p$}.







  12. ____/1 One way to shade a polygon with many edges is:
    1. split it into triangles, then
    2. shade the triangles.
    If you use this to make a video, then each separate frame may look good, but the video may look bad. Why?



  13. ____/1 What is the 4x4 homogeneous matrix for
    1. a 3D rotation by 45 degrees about the X axis,
    2. followed by this translation: x'=x+1, y'=y, z'=z.








  14. ____/1 Write the vector formula for the 3D rotation by 45 degrees about the X axis,






  15. ____/1 Why is the Bresenham algorithm less important now than it once was?



  16. ____/1 In the graphics pipeline, when a triangle is processed, the (x,y,z) coordinates of the vertices are interpolated across the whole triangle to give the coordinates of each fragment. Name two other things that may commonly be specified at the vertices and then interpolated across the triangle to give a value for each fragment.



  17. ____/1 Following the principle that less is more, the OpenGL designers decided not to include some functionality that a program that processes images would probably need. Name it.



  18. ____/1 As described in Angel, what are the 4 stages of the graphics pipeline?



  19. ____/1 Compare Gouraud and Phong shading: Which one is more realistic, especially for highly curved surfaces?



  20. ____/1 Why?



  21. ____/1 Where in the graphics pipeline does texture mapping take place?



  22. ____/1 When clipping in 3D, how many independent clippers are required in the pipeline?


  23. ____/1 When compositing several images, the limited precision of the color (frame) buffers may hurt the image quality. Therefore, OpenGL also has another buffer to composit into. Name it.



  24. ____/1 Name the operation that does this:
    "Rather than derive a different projection matrix for each type of projection, we can convert all projections to orthogonal projections with the default view volume This strategy allows us to use standard transformations in the pipeline and makes for efficient clipping"



  25. ____/1 What function do you call to change the shininess of a surface (when modeling it in OpenGL)?



    END