zoomIn1 method

Matrix4 zoomIn1(
  1. double x,
  2. double y
)

Zooms in by 1.4f, x and y are the coordinates (in pixels) of the zoom center.

@param x @param y

Implementation

Matrix4 zoomIn1(double x, double y) {
  Matrix4 save = Matrix4.identity();
  zoomIn2(x, y, save);
  return save;
}