We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb3c55 commit 2f49f89Copy full SHA for 2f49f89
lib/matplotlib/transforms.py
@@ -474,10 +474,9 @@ def fully_containsy(self, y):
474
:attr:`y1`.
475
"""
476
y0, y1 = self.intervaly
477
- # FIXME x is not define. This method probably doesn't work.
478
return ((y0 < y1
479
- and (x > y0 and x < y1))
480
- or (x > y1 and x < y0))
+ and (y > y0 and y < y1))
+ or (y > y1 and y < y0))
481
482
def fully_contains(self, x, y):
483
0 commit comments