MCPcopy Create free account
hub / github.com/benfry/processing4 / getFloatRow

Method getFloatRow

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

Source from the content-addressed store, hash-verified

3376
3377
3378 public float[] getFloatRow(int row) {
3379 float[] outgoing = new float[columns.length];
3380 for (int col = 0; col < columns.length; col++) {
3381 outgoing[col] = getFloat(row, col);
3382 }
3383 return outgoing;
3384 }
3385
3386
3387 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers

nothing calls this directly

Calls 1

getFloatMethod · 0.95

Tested by

no test coverage detected