本文整理匯總了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)