Return whether *point* (pair of pixel coordinates) is inside the Axes patch.
(self, point)
| 4643 | return self.patch.contains(mouseevent) |
| 4644 | |
| 4645 | def contains_point(self, point): |
| 4646 | """ |
| 4647 | Return whether *point* (pair of pixel coordinates) is inside the Axes |
| 4648 | patch. |
| 4649 | """ |
| 4650 | return self.patch.contains_point(point, radius=1.0) |
| 4651 | |
| 4652 | def get_default_bbox_extra_artists(self): |
| 4653 | """ |
no outgoing calls