Basically, what I'm trying to do, is store the transform value of an element, manipulate & update it...
I'm looking for some js function-methods that can destructure the matrix3d
value into it's initial transform properties.
I've looked into webkitcssmatrix but that's limited and I can't quite figure out the outcome..
this is the briefest explanation I've found on what the matrix3d is:
[1,0,0,0], [0,cos(a), sin(-a), 0], [0,sin(a), cos( a), 0], [0,0,0,1]
I also found an unmatrix in C (maybe it can be useful...)