MCPcopy Index your code
hub / github.com/processing/processing / getDoubleArray

Method getDoubleArray

core/src/processing/data/JSONArray.java:613–619  ·  view source on GitHub ↗

Get this entire array as a double array. Everything must be an double.

()

Source from the content-addressed store, hash-verified

611
612 /** Get this entire array as a double array. Everything must be an double. */
613 public double[] getDoubleArray() {
614 double[] outgoing = new double[size()];
615 for (int i = 0; i < size(); i++) {
616 outgoing[i] = getDouble(i);
617 }
618 return outgoing;
619 }
620
621
622 /** Get this entire array as a boolean array. Everything must be a boolean. */

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.95
getDoubleMethod · 0.95

Tested by

no test coverage detected