(self, coordinates, **kwargs)
| 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""" |
nothing calls this directly
no test coverage detected