bool areEqual(Matrix3 m) { for (int row = 0; row < storage.length; row++) { if (storage[row] != m.storage[row]) return false; } return true; }