Set the path effects. Parameters ---------- path_effects : list of `.AbstractPathEffect`
(self, path_effects)
| 736 | self.stale = True |
| 737 | |
| 738 | def set_path_effects(self, path_effects): |
| 739 | """ |
| 740 | Set the path effects. |
| 741 | |
| 742 | Parameters |
| 743 | ---------- |
| 744 | path_effects : list of `.AbstractPathEffect` |
| 745 | """ |
| 746 | self._path_effects = path_effects |
| 747 | self.stale = True |
| 748 | |
| 749 | def get_path_effects(self): |
| 750 | return self._path_effects |
no outgoing calls