(Plot plot)
| 2769 | } |
| 2770 | |
| 2771 | double getPlotLimits(Plot plot) { |
| 2772 | double[] limits = plot.getLimits(); |
| 2773 | getFirstVariable().setValue(limits[0]); //xMin |
| 2774 | getNextVariable().setValue(limits[1]); //xMax |
| 2775 | getNextVariable().setValue(limits[2]); //yMin |
| 2776 | getLastVariable().setValue(limits[3]); //yMax |
| 2777 | return Double.NaN; |
| 2778 | } |
| 2779 | |
| 2780 | double getPlotFrameBounds(Plot plot) { |
| 2781 | Rectangle r = plot.getDrawingFrame(); |
no test coverage detected