(self)
| 2684 | return ec[unmasked_polys, :] |
| 2685 | |
| 2686 | def get_facecolor(self): |
| 2687 | # docstring inherited |
| 2688 | # We only want to return the facecolors of the polygons |
| 2689 | # that were drawn. |
| 2690 | fc = super().get_facecolor() |
| 2691 | unmasked_polys = self._get_unmasked_polys().ravel() |
| 2692 | if len(fc) != len(unmasked_polys): |
| 2693 | # Mapping is off |
| 2694 | return fc |
| 2695 | return fc[unmasked_polys, :] |
| 2696 | |
| 2697 | def set_array(self, A): |
| 2698 | # docstring inherited |
nothing calls this directly
no test coverage detected