If I have a point and a Matrix:
float point[] = new float[]{x,y};
Matrix matrix = new Matrix();
and call:
matrix.mapPoints(point);
how could I reverse the effects that matrix.mapPoints(point)
has on point
?
This isn't the actual application that I will use the answer for, but an answer for this will would work for what I need.
Thanks for any help.