(self, color)
| 372 | self.stale = True |
| 373 | |
| 374 | def _set_edgecolor(self, color): |
| 375 | if color is None: |
| 376 | if (mpl.rcParams['patch.force_edgecolor'] or |
| 377 | not self._fill or self._edge_default): |
| 378 | color = mpl.rcParams['patch.edgecolor'] |
| 379 | else: |
| 380 | color = 'none' |
| 381 | |
| 382 | self._edgecolor = colors.to_rgba(color, self._alpha) |
| 383 | self.stale = True |
| 384 | |
| 385 | def set_edgecolor(self, color): |
| 386 | """ |
no test coverage detected