()
| 2557 | } |
| 2558 | |
| 2559 | double showPlot() { |
| 2560 | if (plot!=null) { |
| 2561 | PlotWindow plotWindow = plot.show(); |
| 2562 | if (plotWindow!=null) |
| 2563 | plotID = plotWindow.getImagePlus().getID(); |
| 2564 | } |
| 2565 | plot = null; //not a plot under construction any more |
| 2566 | interp.getParens(); |
| 2567 | return Double.NaN; |
| 2568 | } |
| 2569 | |
| 2570 | double updatePlot(Plot thePlot) { |
| 2571 | if (thePlot == plot) { |
no test coverage detected