MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __eq__

Method __eq__

lib/matplotlib/transforms.py:1837–1840  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

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

Callers 1

__eq__Method · 0.45

Calls 1

get_matrixMethod · 0.45

Tested by

no test coverage detected