zoomIn method

void zoomIn()

Increases zoom by 20%.

Implementation

void zoomIn() {
  setZoom((_zoom + 0.2).clamp(0.4, 3.0));
}