Hello,
I am trying to apply a matrix transformation to an SVG group element which already has a matrix transformation applied to it.
So, the current transformation is:
matrix(1.0349256,-0.46932166,0.45501964,1.1067711,-3.9816644,131.00524)
the TweenMax.to transform being applied is:
matrix(2.03492, -0.46932, 0.45501, 0.510676, 7.51245, 132.861)
the result I am expecting is:
matrix(2.03492, -0.46932, 0.45501, 0.510676, 7.51245, 132.861)
but the result is that the transform attribute is gone and a new style attribute exists as follows:
style="transform: matrix(2.03492, -0.46932, 0.455, 0.51068, 19.2763, 121.028);"
The result is very close. The first 4 numbers in the matrix are great. The last two, I am confused about.
I don't mind doing some preprocessing to get the matrix into the right form, but I am unsure what adjustments need to be made in order to get the last two values to line up correct, while preserving the first 4 values in the matrix.
Any advice for solving this problem to shed some light on what is happening and what I need to do to adjust my tween would be greatly appreciated.