Return True if event is within the patch.
(self, event)
| 3058 | self._extents_on_press = self.extents |
| 3059 | |
| 3060 | def _contains(self, event): |
| 3061 | """Return True if event is within the patch.""" |
| 3062 | return self._selection_artist.contains(event, radius=0)[0] |
| 3063 | |
| 3064 | @staticmethod |
| 3065 | def _snap(values, snap_values): |
no test coverage detected