reset method

void reset()

Resets zoom back to minimum 1.0.

Implementation

void reset() {
  _currentZoom = minZoom;
  _targetZoom = minZoom;
  _lastZoomChangeTime = null;
  _stableFrameCount = 0;
  _isSettled = false;
  _lastAreaRatio = 0.0;
}