Set the `.CapStyle`. The default capstyle is 'round' for `.FancyArrowPatch` and 'butt' for all other patches. Parameters ---------- s : `.CapStyle` or %(CapStyle)s
(self, s)
| 578 | |
| 579 | @_docstring.interpd |
| 580 | def set_capstyle(self, s): |
| 581 | """ |
| 582 | Set the `.CapStyle`. |
| 583 | |
| 584 | The default capstyle is 'round' for `.FancyArrowPatch` and 'butt' for |
| 585 | all other patches. |
| 586 | |
| 587 | Parameters |
| 588 | ---------- |
| 589 | s : `.CapStyle` or %(CapStyle)s |
| 590 | """ |
| 591 | cs = CapStyle(s) |
| 592 | self._capstyle = cs |
| 593 | self.stale = True |
| 594 | |
| 595 | def get_capstyle(self): |
| 596 | """Return the capstyle.""" |
no test coverage detected