(self, other)
| 1835 | return self.get_matrix() |
| 1836 | |
| 1837 | def __eq__(self, other): |
| 1838 | if getattr(other, "is_affine", False) and hasattr(other, "get_matrix"): |
| 1839 | return (self.get_matrix() == other.get_matrix()).all() |
| 1840 | return NotImplemented |
| 1841 | |
| 1842 | def transform(self, values): |
| 1843 | # docstring inherited |