Saves the plot range for later restoring by 'setPreviousMinMax'
()
| 2518 | |
| 2519 | /** Saves the plot range for later restoring by 'setPreviousMinMax' */ |
| 2520 | void saveMinMax() { |
| 2521 | if (!Arrays.equals(currentMinMax, savedMinMax)) |
| 2522 | System.arraycopy(currentMinMax, 0, savedMinMax, 0, currentMinMax.length); |
| 2523 | } |
| 2524 | |
| 2525 | /** Modifies automatic limits to avoid points exactly at the borders. |
| 2526 | * This only happens for limits where the corresponding value of the class array 'enlargeRange' is set: |
no test coverage detected