multiplyBy method

void multiplyBy(
  1. MutableAffine other
)

Mutliply this matrix by other, storing the result in this matrix.

Implementation

void multiplyBy(MutableAffine other) => _storage.multiply(other._storage);