MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / addPoints

Method addPoints

ij/src/main/java/ij/gui/PlotWindow.java:218–220  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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.

Callers 2

plotFitMethod · 0.95

Calls 1

toFloatMethod · 0.95

Tested by

no test coverage detected