Sets this image's calibration.
(Calibration cal)
| 2853 | |
| 2854 | /** Sets this image's calibration. */ |
| 2855 | public void setCalibration(Calibration cal) { |
| 2856 | if (cal==null) |
| 2857 | calibration = null; |
| 2858 | else { |
| 2859 | calibration = cal.copy(); |
| 2860 | calibration.setImage(this); |
| 2861 | } |
| 2862 | } |
| 2863 | |
| 2864 | /** Sets the system-wide calibration. */ |
| 2865 | public void setGlobalCalibration(Calibration global) { |
no test coverage detected