(ArrayList list)
| 952 | } |
| 953 | |
| 954 | public double[] getDoubleFromArrayList(ArrayList list) { |
| 955 | if (list == null) return null; |
| 956 | double[] targ = new double[list.size()]; |
| 957 | for (int i = 0; i < list.size(); i++) |
| 958 | targ[i] = ((Double) list.get(i)).doubleValue(); |
| 959 | return targ; |
| 960 | } |
| 961 | |
| 962 | /** Adds a set of points that will be drawn as ARROWs. |
| 963 | * @param x1 the x-coodinates of the beginning of the arrow |
no test coverage detected