(ImagePlus imp, double magnification)
| 17 | } |
| 18 | |
| 19 | public static void set(ImagePlus imp, double magnification) { |
| 20 | Zoom zoom = new Zoom(); |
| 21 | zoom.setZoom(imp, magnification, -1, -1); |
| 22 | } |
| 23 | |
| 24 | public static void set(ImagePlus imp, double magnification, int x, int y) { |
| 25 | Zoom zoom = new Zoom(); |
no test coverage detected