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