(Plot plot)
| 2756 | } |
| 2757 | |
| 2758 | double addPlotLegend(Plot plot) { |
| 2759 | String labels = getFirstString(); |
| 2760 | String options = "auto"; |
| 2761 | if (interp.nextToken()!=')') |
| 2762 | options = getLastString(); |
| 2763 | else |
| 2764 | interp.getRightParen(); |
| 2765 | plot.setColor(Color.BLACK); |
| 2766 | plot.setLineWidth(1); |
| 2767 | plot.addLegend(labels, options); |
| 2768 | return Double.NaN; |
| 2769 | } |
| 2770 | |
| 2771 | double getPlotLimits(Plot plot) { |
| 2772 | double[] limits = plot.getLimits(); |
no test coverage detected