Translation moves a shape from one place to another without changing its size, shape, or direction.
[1 0 tx] [0 1 ty] [0 0 1]
Scaling changes the size of a shape. It can make the shape bigger or smaller, but the shape and direction remain the same.
[sx 0 0] [0 sy 0] [0 0 1]
Reflection flips a shape over a line called the axis of reflection.
The shape appears as a mirror image.
[ 1 0 0 ] [ 0 -1 0 ] [ 0 0 1 ]
[-1 0 0 ] [ 0 1 0 ] [ 0 0 1 ]
Shearing slants a shape in a specific direction. It changes the shape into a skewed form but keeps the parallel lines parallel.
[ 1 k 0 ] [ 0 1 0 ] [ 0 0 1 ]
[ 1 0 0 ] [ k 1 0 ] [ 0 0 1 ]
Rotation turns a shape around a fixed point called the origin by a certain angle.
[ cosθ -sinθ 0 ] [ sinθ cosθ 0 ] [ 0 0 1 ]