(self, radius)
| 117 | return [] |
| 118 | |
| 119 | def _process_radius(self, radius): |
| 120 | if radius is not None: |
| 121 | return radius |
| 122 | if isinstance(self._picker, Number): |
| 123 | _radius = self._picker |
| 124 | else: |
| 125 | if self.get_edgecolor()[3] == 0: |
| 126 | _radius = 0 |
| 127 | else: |
| 128 | _radius = self.get_linewidth() |
| 129 | return _radius |
| 130 | |
| 131 | def contains(self, mouseevent, radius=None): |
| 132 | """ |