(Plot plot)
| 2847 | } |
| 2848 | |
| 2849 | double enableLivePlot(Plot plot) { |
| 2850 | boolean b = getBooleanArg(); |
| 2851 | ImagePlus imp = plot.getImagePlus(); |
| 2852 | PlotWindow pw = imp == null ? null : (PlotWindow)imp.getWindow(); |
| 2853 | if (pw != null) |
| 2854 | pw.enableLivePlot(b); |
| 2855 | return Double.NaN; |
| 2856 | } |
| 2857 | |
| 2858 | void getBounds(boolean intValues) { |
| 2859 | Variable x = getFirstVariable(); |
no test coverage detected