(self)
| 2411 | return super().get_edgecolor().reshape(-1, 4) |
| 2412 | |
| 2413 | def get_facecolor(self): |
| 2414 | # docstring inherited |
| 2415 | # Note that we want to return an array of shape (N*M, 4) |
| 2416 | # a flattened RGBA collection |
| 2417 | return super().get_facecolor().reshape(-1, 4) |
| 2418 | |
| 2419 | @staticmethod |
| 2420 | def _convert_mesh_to_paths(coordinates): |
no outgoing calls
no test coverage detected