Notes about CSE167 of UCSD on Edx.
Slices available at https://is.gd/6iQ1hZ
Basic 2D Transform
scale
shear
rectangular shape -> parallelogram
X′=X+aY
Y coordinate is equal to original, in other words, Y′=Y
rotation
R(X+Y) = R(X) + R(Y)
- Linear: Rotation is a linear operation.
- Commutative: In 2D, it is commutative(可交换的), while in 3D, it is not.
Conclusion:
[x′ y′]=[cosθ−sinθ sinθcosθ][x y]