(self, c)
| 930 | self._set_edgecolor(c) |
| 931 | |
| 932 | def _set_hatchcolor(self, c): |
| 933 | c = mpl._val_or_rc(c, 'hatch.color') |
| 934 | if cbook._str_equal(c, 'edge'): |
| 935 | self._hatchcolors = 'edge' |
| 936 | else: |
| 937 | self._hatchcolors = mcolors.to_rgba_array(c, self._alpha) |
| 938 | self.stale = True |
| 939 | |
| 940 | def set_hatchcolor(self, c): |
| 941 | """ |
no outgoing calls
no test coverage detected