I know a matrix [x scale, y skew, x skew, y scale, trans x, trans y], and would like to get the angle in degrees.
thanks!
|
I know a matrix [x scale, y skew, x skew, y scale, trans x, trans y], and would like to get the angle in degrees. thanks! |
|||||||||||
|
|
Consider the following matrix
with This only represents a pure rotation if all three are true
In this case, if
This will give you the answer in radians (most likely), so you'll need to convert to degrees. Assuming you have an object called M, representing the matrix, the properties that match my definitions above, you could do:
EDIT For a pure rotation followed by (or preceded by) a scaling transform that maintains aspect ratio:
Then you can us the following identity:
This gives us
If you want to factor in translations, you're entering a world of hurt. |
||||
|
I'm just gonna place this here for future reference. I went ahead and created a quick jQuery method that attempts to calculate the angle of rotation of a given HTML element. Hopefully, this will save someone the trouble I had. |
|||
|
|