setZoomStopsAndWeights method

void setZoomStopsAndWeights(
  1. List<double> zoomStops,
  2. List<double> zoomWeights
)

Sets the zoom stop and weight values.

Implementation

void setZoomStopsAndWeights(
    List<double> zoomStops, List<double> zoomWeights) {
  this.zoomStops = zoomStops;
  this.zoomWeights = zoomWeights;
}