Page 7: Animation and THREE

CS559 Spring 2023 Sample Solution

Animating using THREE is very similar to how we’ve been doing other web animation. We use requestAnimationFrame to set up an animation loop that calls our drawing function, and as part of the drawing function we make any changes that we want to have in the picture and redraw the picture.

Because THREE is a scene graph API, we make changes by adjusting the existing objects, rather than by recreating new graphics objects. This is particularly important because the act of creating an object might be expensive. For example, when we create a new material, we need to run the shader compiler to translate the material into code for the graphics hardware. Also, it is much better to re-use existing objects: even if creating them is cheap, we can avoid the overhead of re-sending the information to the graphics hardware.

Sometimes, it isn’t obvious whether a particular change will require a substantial change to the information sent to the hardware. For example, if you change a parameter of the shader, it may or may not need to be re-compiled. Or if you change the vertices of a geometry, it may or may not need to be re-organized to be sent to the graphics hardware. For reasons like this, THREE sometimes doesn’t let you change things during drawing.

In general, we prefer to animate transformation parameters (since these don’t require rebuilding the data structures for the graphics hardware). After we learn how the graphics hardware works, this will make more sense. But for now, be aware that sometimes when you change values, you may not see the changes.

One Page  8  (Snowman) we’ll ask you to do some programming to make something in 3D using THREE.

Next: Snowman

There are no points associated with this page.