Advanced C++ Programming Tutorial 5
From Chilipedia
Hot take: the Matrix is a mediocre film at best. It's a pretty great way to encode transformations though, so let's matrix it up!
Contents
[hide]Topics
Part 1
- Matrix form
- Matrix by vector multiplication
- Matrix encoding of scaling, rotation, and flipping
- Matrix multiplication
- Concatenating matrix transforms
Part 2
- Augmented 3x3 matrix for encoding translations
- Matrix multiplication order matters!
- Porting pipeline to use matrix transforms
- Bug hunting!
Video Timestamp Index
Tutorial 5.1
[Expand]
- Matrices: what are they, what are they good for? 0:44
- Basic Matrix operations: Matrix by Vector multiplication 3:05
- Creating a templated
_Mat2<T>
Matrix class 7:16
- Implementing the Matrix by Vector multiplication method 9:21
- Testing in
game.cpp
13:00 - Implementing basic transformations in Matrix form as static functions 15:16
- Testing in
game.cpp
21:25 - Basic matrix operations: Matrix multiplication 23:06
- Implementing & testing the Matrix multiplication method 25:52
- Recap: concatenating transformations by multiplying transformation matrices 30:10
- What about translation? 31:20
Tutorial 5.2
[Expand]
- Translation: why is it a complicated transformation? 0:14
- Trick: augment the matrix (add an extra dimension) 3:11
- Coding this into the framweork 6:54
- The order of applying transformations and its relation to Matrix multiplication (concatenation) 12:09
- Matrix augmentation is not just a hack, it falls in the domain of Projective Geometry 15:29
- Fix up the Starfield rendering pipeline 16:31
- Debugging session: the wrong order of transformations can mess you up 24:51
Links
- GitHub Repo (advmath)
- Note that the code for this tutorial can be found on the <starfield> branch of the repo not in <master>
Homework
None! (or check out 3D Fundamentals you lazy fucks!)