(self)
| 2673 | self.set_verts(verts) |
| 2674 | |
| 2675 | def get_edgecolor(self): |
| 2676 | # docstring inherited |
| 2677 | # We only want to return the facecolors of the polygons |
| 2678 | # that were drawn. |
| 2679 | ec = super().get_edgecolor() |
| 2680 | unmasked_polys = self._get_unmasked_polys().ravel() |
| 2681 | if len(ec) != len(unmasked_polys): |
| 2682 | # Mapping is off |
| 2683 | return ec |
| 2684 | return ec[unmasked_polys, :] |
| 2685 | |
| 2686 | def get_facecolor(self): |
| 2687 | # docstring inherited |
nothing calls this directly
no test coverage detected