(Plot plot)
| 2673 | } |
| 2674 | |
| 2675 | double setPlotColor(Plot plot) { |
| 2676 | interp.getLeftParen(); |
| 2677 | Color color = getColor(); |
| 2678 | Color color2 = null; |
| 2679 | if (interp.nextToken()!=')') { |
| 2680 | interp.getComma(); |
| 2681 | color2 = getColor(); |
| 2682 | } |
| 2683 | plot.setColor(color, color2); |
| 2684 | interp.getRightParen(); |
| 2685 | return Double.NaN; |
| 2686 | } |
| 2687 | |
| 2688 | double setPlotBackgroundColor(Plot plot) { |
| 2689 | interp.getLeftParen(); |
no test coverage detected