(self)
| 2405 | return self._coordinates |
| 2406 | |
| 2407 | def get_edgecolor(self): |
| 2408 | # docstring inherited |
| 2409 | # Note that we want to return an array of shape (N*M, 4) |
| 2410 | # a flattened RGBA collection |
| 2411 | return super().get_edgecolor().reshape(-1, 4) |
| 2412 | |
| 2413 | def get_facecolor(self): |
| 2414 | # docstring inherited |
no outgoing calls
no test coverage detected