(String arg)
| 36 | private Checkbox centerCheckbox, randomCheckbox; |
| 37 | |
| 38 | public void run(String arg) { |
| 39 | imp = IJ.getImage(); |
| 40 | Overlay overlay = imp.getOverlay(); |
| 41 | int index = overlay!=null?overlay.getIndex(GRID):-1; |
| 42 | if (index>=0) |
| 43 | gridOnEntry = overlay.get(index); |
| 44 | if (showDialog() && !isMacro) |
| 45 | saveSettings(); |
| 46 | } |
| 47 | |
| 48 | // http://stackoverflow.com/questions/30654203/how-to-create-a-circle-using-generalpath-and-apache-poi |
| 49 | private void drawCircles(double size) { |
nothing calls this directly
no test coverage detected