add method

Matrix3 add(
  1. Matrix3 rhs
)

Implementation

Matrix3 add(Matrix3 rhs) {
  for (int row = 0; row < storage.length; ++row) {
    storage[row] += rhs.storage[row];
  }
  return this;
}