June 2020
Beginner to intermediate
368 pages
7h 23m
English
Deforming a mesh to match an animated pose is called skinning. In order to implement skinning, you first need to declare a mesh class. Once you have declared a mesh class, it can be deformed using a shader (GPU skinning) or just with C++ code (CPU skinning). Both of these skinning methods are covered in this chapter. By the end of this chapter, you should be able to do the following:
A mesh is made up of ...