getRow method
Gets the row
of the matrix
Implementation
Vector4 getRow(int row) {
final r = Vector4.zero();
final rStorage = r._v4storage;
rStorage[0] = _m4storage[index(row, 0)];
rStorage[1] = _m4storage[index(row, 1)];
rStorage[2] = _m4storage[index(row, 2)];
rStorage[3] = _m4storage[index(row, 3)];
return r;
}