Im applying some transformation to my canvas, but now I need to get the new position on screen of that canvas.
- Code: Select all
final Matrix matrixFinal;
canvas.save(Canvas.MATRIX_SAVE_FLAG);
matrixFinal = canvas.getMatrix();
matrixFinal.setTranslate(-4.0f, 2.0f);
canvas.concat(matrixFinal);
After this operation how I can get the exact X Y screen coord of this canvas?
Cheers
Joao

