本文整理汇总了Python中matplotlib.transforms.Bbox.ymax方法的典型用法代码示例。如果您正苦于以下问题:Python Bbox.ymax方法的具体用法?Python Bbox.ymax怎么用?Python Bbox.ymax使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.transforms.Bbox
的用法示例。
在下文中一共展示了Bbox.ymax方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: rand
# 需要导入模块: from matplotlib.transforms import Bbox [as 别名]
# 或者: from matplotlib.transforms.Bbox import ymax [as 别名]
x = rand(100)
y = rand(100)
xys = zip(x,y)
for xy in xys:
xyt = transform.xy_tup(xy)
xyi = transform.inverse_xy_tup(xyt)
assert( closeto_seq(xy,xyi) )
ll = Point( Value(-10), Value(-10) )
ur = Point( Value(200), Value(40) )
bbox = Bbox(ll, ur)
assert(bbox.xmin()==-10)
assert(bbox.xmax()==200)
assert(bbox.ymin()==-10)
assert(bbox.ymax()==40)
bbox.update(xys, False) # don't ignore current lim
bbox.update(xys, True) #ignore current lim
assert(bbox.xmin()==min(x))
assert(bbox.xmax()==max(x))
assert(bbox.ymin()==min(y))
assert(bbox.ymax()==max(y))
ll = Point( Value(-10), Value(-10) )
ur = Point( Value(200), Value(40) )
bbox = Bbox(ll, ur)
ix = bbox.intervalx()