(Plot plot)
| 2838 | } |
| 2839 | |
| 2840 | double replacePlot(Plot plot) { |
| 2841 | int index = (int)getFirstArg(); |
| 2842 | String shape = getNextString(); |
| 2843 | double[] x = getNextArray(); |
| 2844 | double[] y = getLastArray(); |
| 2845 | plot.replace(index, shape, x, y); |
| 2846 | return Double.NaN; |
| 2847 | } |
| 2848 | |
| 2849 | double enableLivePlot(Plot plot) { |
| 2850 | boolean b = getBooleanArg(); |
no test coverage detected