postmultiply method
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();
}