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

Method can_composite

lib/matplotlib/image.py:780–786  ·  view source on GitHub ↗

Return whether the image can be composited with its neighbors.

(self)

Source from the content-addressed store, hash-verified

778 self.stale = True
779
780 def can_composite(self):
781 """Return whether the image can be composited with its neighbors."""
782 trans = self.get_transform()
783 return (
784 self._interpolation != 'none' and
785 trans.is_affine and
786 trans.is_separable)
787
788 def set_resample(self, v):
789 """

Callers 1

Calls 1

get_transformMethod · 0.45

Tested by

no test coverage detected