本文整理汇总了Python中box.Box.dist方法的典型用法代码示例。如果您正苦于以下问题:Python Box.dist方法的具体用法?Python Box.dist怎么用?Python Box.dist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类box.Box
的用法示例。
在下文中一共展示了Box.dist方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: assertSymmetry
# 需要导入模块: from box import Box [as 别名]
# 或者: from box.Box import dist [as 别名]
assertSymmetry(box1, box2)
box3 = Box(1, 2, 3, 3)
newBox = Box.meld(box1, box2, box3)
print newBox
box1 = Box(318, 159, 373 - 318, 184 - 159)
box2 = Box(330, 100, 363-330, 147-100)
print box1.dist(box2)
print box2.dist(box1)
assertSymmetry(box1, box2)
"""
box1 = Box(168, 120, 235 - 163, 148 - 120) # 21
box2 = Box(166, 77, 212 - 166, 111 - 77) # 24
print box1.dist(box2)
assertSymmetry(box1, box2)
box1 = Box(46, 58, 120 - 46, 160 - 58)
box2 = Box(163, 120, 235 - 163, 148 - 120)
print box1.dist(box2)
assertSymmetry(box1, box2)
box1 = Box(46, 58, 210 - 46, 160 - 58)
box2 = Box(40, 60, 91 - 40, 111 - 60)
print box1.dist(box2)
print box2.dist(box1)
assertSymmetry(box1, box2)