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