zoomOut2 method

void zoomOut2(
  1. double x,
  2. double y,
  3. Matrix4 outputMatrix
)

Implementation

void zoomOut2(double x, double y, Matrix4 outputMatrix) {
  _matrixTouch.copyInto(outputMatrix);
  Matrix4Utils.postScaleByPoint(outputMatrix, 0.7, 0.7, x, y);
}