WebGL programming involves coding with - ANSWER HTML5, Javascript,
WebGL API, and GLSL in the shaders
The graphics pipeline - ANSWER series of coordinate transformations.
object/model -> eye -> clip coordinates -> NDC -> window
primitives in WebGL - ANSWER point, line, triangles
three ways of drawing triangles - ANSWER draw TRIANGLES,
TRIANGLE_STRIP, TRIANGLE_FAN
WebGL shader types - ANSWER vertex and fragment(color)
When vertices leave the vertex shader, they have to be in a certain volume to be
rasterized - ANSWER clip coordinates, [-1, 1]
projection methods - ANSWER classical projections, orthographic projection,
multiview orthographic projection, perspective projection, parallel projection,
axonometric projections, oblique projection
What is the hidden surface removal algorithm from HW 2? - ANSWER z-
buffer hidden surface removal
Types of events - ANSWER mousedown, click, mouse drag, keyboard input
the function that executes when an event occurs is - ANSWER a callback or an
event handler
in event mode graphics, a trigger generates an ____ whose ____ is put into an
event queue - ANSWER event, measure
WebGL API, and GLSL in the shaders
The graphics pipeline - ANSWER series of coordinate transformations.
object/model -> eye -> clip coordinates -> NDC -> window
primitives in WebGL - ANSWER point, line, triangles
three ways of drawing triangles - ANSWER draw TRIANGLES,
TRIANGLE_STRIP, TRIANGLE_FAN
WebGL shader types - ANSWER vertex and fragment(color)
When vertices leave the vertex shader, they have to be in a certain volume to be
rasterized - ANSWER clip coordinates, [-1, 1]
projection methods - ANSWER classical projections, orthographic projection,
multiview orthographic projection, perspective projection, parallel projection,
axonometric projections, oblique projection
What is the hidden surface removal algorithm from HW 2? - ANSWER z-
buffer hidden surface removal
Types of events - ANSWER mousedown, click, mouse drag, keyboard input
the function that executes when an event occurs is - ANSWER a callback or an
event handler
in event mode graphics, a trigger generates an ____ whose ____ is put into an
event queue - ANSWER event, measure