So, I need to be able to do this for a certain *project* I'm working on. I didn't want to have to resort to a For() loop and manually store all coordinates into a temporary second matrix before overwriting the first one.
Is there any magical identity matrix that can do this? Or will I have to do it the boring way?
Just for clarification, I want:
c1-->
CODE |
ec1[A B C] [D E F] [G H I]c2 |
ec2
to become:
c1
-->
CODE |
ec1[G D A] [H E B] [I F C] or [C F I] [B E H] [A D G]c2 |
ec2
I'm doubting more and more that there's an efficient way of doing that, but if there is I can't seem to find it myself