Set the `.JoinStyle`. The default joinstyle is 'round' for `.FancyArrowPatch` and 'miter' for all other patches. Parameters ---------- s : `.JoinStyle` or %(JoinStyle)s
(self, s)
| 598 | |
| 599 | @_docstring.interpd |
| 600 | def set_joinstyle(self, s): |
| 601 | """ |
| 602 | Set the `.JoinStyle`. |
| 603 | |
| 604 | The default joinstyle is 'round' for `.FancyArrowPatch` and 'miter' for |
| 605 | all other patches. |
| 606 | |
| 607 | Parameters |
| 608 | ---------- |
| 609 | s : `.JoinStyle` or %(JoinStyle)s |
| 610 | """ |
| 611 | js = JoinStyle(s) |
| 612 | self._joinstyle = js |
| 613 | self.stale = True |
| 614 | |
| 615 | def get_joinstyle(self): |
| 616 | """Return the joinstyle.""" |
no test coverage detected