What is the correct and most efficient way to multiply two android.graphics.Matrix objects? Is using mapPoints(float[] pts) a legit way of doing it? For example:
float[] pts = new float[9];
matrix2.getValues(pts);
matrix1.mapPoints(pts);
matrix2.setValues(pts);
0 comments:
Post a Comment