What does it mean to "preconcat" a matrix in Android?
When working with matrices, the word concatenation refers to multiplication.
Since matrix multiplication is not commutative, there is a separate word for backwards multiplication.
Pre-concatenating a
to b
means setting a = b × a
. (As opposed to a = a × b
, which will give a different matrix)