Adds a point to this PointRoi.
(ImagePlus imp, double ox, double oy)
| 358 | |
| 359 | /** Adds a point to this PointRoi. */ |
| 360 | public void addPoint(ImagePlus imp, double ox, double oy) { |
| 361 | if (nPoints==xpf.length) |
| 362 | enlargeArrays(); |
| 363 | addPoint2(imp, ox, oy); |
| 364 | resetBoundingRect(); |
| 365 | } |
| 366 | |
| 367 | |
| 368 | public void addUserPoint(ImagePlus imp, double ox, double oy) { |
no test coverage detected