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

Method getFloatRow

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

Source from the content-addressed store, hash-verified

3317
3318
3319 public float[] getFloatRow(int row) {
3320 float[] outgoing = new float[columns.length];
3321 for (int col = 0; col < columns.length; col++) {
3322 outgoing[col] = getFloat(row, col);
3323 }
3324 return outgoing;
3325 }
3326
3327
3328 // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .

Callers

nothing calls this directly

Calls 1

getFloatMethod · 0.95

Tested by

no test coverage detected