(self)
| 889 | return mpl.rcParams['patch.edgecolor'] |
| 890 | |
| 891 | def get_hatchcolor(self): |
| 892 | if cbook._str_equal(self._hatchcolors, 'edge'): |
| 893 | if len(self.get_edgecolor()) == 0: |
| 894 | return mpl.colors.to_rgba_array(self._get_default_edgecolor(), |
| 895 | self._alpha) |
| 896 | return self.get_edgecolor() |
| 897 | return self._hatchcolors |
| 898 | |
| 899 | def _set_edgecolor(self, c): |
| 900 | if c is None: |
no test coverage detected