postmultiply method

  1. @override
void postmultiply(
  1. Matrix2 arg
)
override

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

@override
void postmultiply(Matrix2 arg) {
  super.postmultiply(arg);
  notifyListeners();
}