(Plot plot)
| 2586 | } |
| 2587 | |
| 2588 | double addPlotText(Plot plot) { |
| 2589 | String str = getFirstString(); |
| 2590 | double x = getNextArg(); |
| 2591 | double y = getLastArg(); |
| 2592 | plot.setJustification(justification); |
| 2593 | plot.addLabel(x, y, str); |
| 2594 | return Double.NaN; |
| 2595 | } |
| 2596 | |
| 2597 | double drawPlotLine(boolean normalized) { |
| 2598 | double x1 = getFirstArg(); |
no test coverage detected