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

Method fully_containsx

lib/matplotlib/transforms.py:443–448  ·  view source on GitHub ↗

Return whether *x* is in the open (:attr:`x0`, :attr:`x1`) interval.

(self, x)

Source from the content-addressed store, hash-verified

441 return ax1 <= bx2 and bx1 <= ax2 and ay1 <= by2 and by1 <= ay2
442
443 def fully_containsx(self, x):
444 """
445 Return whether *x* is in the open (:attr:`x0`, :attr:`x1`) interval.
446 """
447 x0, x1 = self.intervalx
448 return x0 < x < x1 or x0 > x > x1
449
450 def fully_containsy(self, y):
451 """

Callers 1

fully_containsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected