zoomOut method

void zoomOut()

Decreases zoom by 20%.

Implementation

void zoomOut() {
  setZoom((_zoom - 0.2).clamp(0.4, 3.0));
}