I have a 1x3 matrix representing a point in space:
[x]
[y]
[1]
And a 3x3 matrix representing an affine 2d transformation matrix
[a][b][c]
[d][e][f]
[g][h][i]
How to I multiply the matrices so that I am given the matrix?
[newX]
[newY]
[w]