MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / fully_contains

Method fully_contains

lib/matplotlib/transforms.py:457–461  ·  view source on GitHub ↗

Return whether ``x, y`` is in the bounding box, but not on its edge.

(self, x, y)

Source from the content-addressed store, hash-verified

455 return y0 < y < y1 or y0 > y > y1
456
457 def fully_contains(self, x, y):
458 """
459 Return whether ``x, y`` is in the bounding box, but not on its edge.
460 """
461 return self.fully_containsx(x) and self.fully_containsy(y)
462
463 def fully_overlaps(self, other):
464 """

Callers 1

fully_containsMethod · 0.45

Calls 2

fully_containsxMethod · 0.95
fully_containsyMethod · 0.95

Tested by

no test coverage detected