Clears this RoiManager so that it contains no ROIs.
()
| 2460 | |
| 2461 | /** Clears this RoiManager so that it contains no ROIs. */ |
| 2462 | public void reset() { |
| 2463 | if (IJ.isMacOSX() && IJ.isMacro()) |
| 2464 | ignoreInterrupts = true; |
| 2465 | if (listModel!=null) |
| 2466 | listModel.removeAllElements(); |
| 2467 | overlayTemplate = null; |
| 2468 | rois.clear(); |
| 2469 | updateShowAll(); |
| 2470 | } |
| 2471 | |
| 2472 | private void scale() { |
| 2473 | GenericDialog gd = new GenericDialog("Scale"); |
no test coverage detected