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

Method toArray

ij/src/main/java/ij/gui/Overlay.java:160–163  ·  view source on GitHub ↗

Returns on array containing the ROIs in this Overlay.

()

Source from the content-addressed store, hash-verified

158
159 /** Returns on array containing the ROIs in this Overlay. */
160 public Roi[] toArray() {
161 Roi[] array = new Roi[list.size()];
162 return (Roi[])list.toArray(array);
163 }
164
165 /** Returns on array containing the ROIs with the specified indexes. */
166 public Roi[] toArray(int[] indexes) {

Callers 15

doOverlayMethod · 0.95
listMethod · 0.95
getIndexMethod · 0.95
indexAtMethod · 0.95
cropMethod · 0.95
xorMethod · 0.95
duplicateMethod · 0.95
drawNamesMethod · 0.95
getLutsMethod · 0.45
getNonImageWindowsMethod · 0.45
getAllNonImageWindowsMethod · 0.45
getNonImageTitlesMethod · 0.45

Calls 3

sizeMethod · 0.95
getMethod · 0.95
addMethod · 0.65

Tested by

no test coverage detected