zoomOut1 method

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

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

Implementation

Matrix4 zoomOut1(double x, double y) {
  Matrix4 save = Matrix4.identity();
  zoomOut2(x, y, save);
  return save;
}