Set the patch linewidth in points. Parameters ---------- w : float or None
(self, w)
| 491 | # stale is already True |
| 492 | |
| 493 | def set_linewidth(self, w): |
| 494 | """ |
| 495 | Set the patch linewidth in points. |
| 496 | |
| 497 | Parameters |
| 498 | ---------- |
| 499 | w : float or None |
| 500 | """ |
| 501 | w = mpl._val_or_rc(w, 'patch.linewidth') |
| 502 | w = float(w) |
| 503 | self._linewidth = w |
| 504 | self._dash_pattern = mlines._scale_dashes(*self._unscaled_dash_pattern, w) |
| 505 | self.stale = True |
| 506 | |
| 507 | def set_linestyle(self, ls): |
| 508 | """ |
no outgoing calls
no test coverage detected