This is not a duplicate. I've looked through all of the other answers.
I have an [a, b, c, d, e, f] svg transform matrix. I want to decompose it into any series of translate/scale/rotate(with optional center) operations. Skew is NOT an option. I'm trying to fit within the 7 attributes provided by the Android Vector Drawable Group (eg, rotation, pivotX, pivotY, scaleX, scaleY, translateX, translateY).
My first question is, is that possible for all such matrices? If the matrix has skew along either axis, can that be instead rendered via a series of rotate|scale operations? If not all matrices are possible, is it possible to detect when they're not?
The second question is some help with the basic math. I get as far as translateX = e
and translateY = f
. scaleX = a
and scaleY = d
IF b and c are zero. But when b and c are non zero, rotation and scale get entangled. How can I disentangle those?
Based on the answer here:
It looks like there is no way to split the matrix into individual transforms when
b / d != -a / c
. Whether you can solve this using multiple rotations and scaling, I don't know.