Adds a set of points to the plot or adds a curve if shape is set to LINE. Note that there are more options available by using the methods of the Plot class instead. @param x the x-coodinates @param y the y-coodinates @param shape Plot.CIRCLE, X, BOX, TRIANGLE, CROSS, LINE etc. @deprecated u
(float[] x, float[] y, int shape)
| 216 | * @param shape Plot.CIRCLE, X, BOX, TRIANGLE, CROSS, LINE etc. |
| 217 | * @deprecated use the corresponding method of the Plot class */ |
| 218 | public void addPoints(float[] x, float[] y, int shape) { |
| 219 | plot.addPoints(x, y, shape); |
| 220 | } |
| 221 | |
| 222 | /** Adds a set of points to the plot using double arrays. |
| 223 | * Must be called before the plot is displayed. |
no test coverage detected