setColumn method

void setColumn (int column, Vector3 arg)

Assigns the column of the matrix arg

Implementation

void setColumn(int column, Vector3 arg) {
  final Float64List argStorage = arg._v3storage;
  final int entry = column * 3;
  _m3storage[entry + 2] = argStorage[2];
  _m3storage[entry + 1] = argStorage[1];
  _m3storage[entry + 0] = argStorage[0];
}