setColumns method
Sets the entire matrix to the column values.
Implementation
void setColumns(Vector2 arg0, Vector2 arg1) {
final arg0Storage = arg0._v2storage;
final arg1Storage = arg1._v2storage;
_m2storage[0] = arg0Storage[0];
_m2storage[1] = arg0Storage[1];
_m2storage[2] = arg1Storage[0];
_m2storage[3] = arg1Storage[1];
}