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

Method fully_containsy

lib/matplotlib/transforms.py:450–455  ·  view source on GitHub ↗

Return whether *y* is in the open (:attr:`y0`, :attr:`y1`) interval.

(self, y)

Source from the content-addressed store, hash-verified

448 return x0 < x < x1 or x0 > x > x1
449
450 def fully_containsy(self, y):
451 """
452 Return whether *y* is in the open (:attr:`y0`, :attr:`y1`) interval.
453 """
454 y0, y1 = self.intervaly
455 return y0 < y < y1 or y0 > y > y1
456
457 def fully_contains(self, x, y):
458 """

Callers 1

fully_containsMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected