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

Method getDoubleRow

core/src/processing/data/Table.java:3394–3400  ·  view source on GitHub ↗
(int row)

Source from the content-addressed store, hash-verified

3392
3393
3394 public double[] getDoubleRow(int row) {
3395 double[] outgoing = new double[columns.length];
3396 for (int col = 0; col < columns.length; col++) {
3397 outgoing[col] = getDouble(row, col);
3398 }
3399 return outgoing;
3400 }
3401
3402
3403 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers

nothing calls this directly

Calls 1

getDoubleMethod · 0.95

Tested by

no test coverage detected