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

Method __init__

lib/matplotlib/collections.py:2629–2635  ·  view source on GitHub ↗
(self, coordinates, **kwargs)

Source from the content-addressed store, hash-verified

2627 """
2628
2629 def __init__(self, coordinates, **kwargs):
2630 super().__init__(coordinates=coordinates)
2631 PolyCollection.__init__(self, verts=[], **kwargs)
2632 # Setting the verts updates the paths of the PolyCollection
2633 # This is called after the initializers to make sure the kwargs
2634 # have all been processed and available for the masking calculations
2635 self._set_unmasked_verts()
2636
2637 def _get_unmasked_polys(self):
2638 """Get the unmasked regions using the coordinates and array"""

Callers

nothing calls this directly

Calls 2

_set_unmasked_vertsMethod · 0.95
__init__Method · 0.45

Tested by

no test coverage detected