Android : Multiplying two Matrix objects

on Sunday, September 7, 2014


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