postmultiply method
- Matrix2 arg
 
Transforms this into the product of this as a row vector,
postmultiplied by matrix, arg.
If arg is a rotation matrix, this is a computational shortcut for
applying, the inverse of the transformation.
Implementation
void postmultiply(Matrix2 arg) {
  final argStorage = arg.storage;
  final v1 = _v2storage[1];
  final v0 = _v2storage[0];
  _v2storage[1] = v0 * argStorage[2] + v1 * argStorage[3];
  _v2storage[0] = v0 * argStorage[0] + v1 * argStorage[1];
}