计算两个矩形的重叠面积(均平行于坐标轴)
摘要:
1 ''' 2 input: rect1, rect2, 均为list,其分别为 3 xl(left),yb(bottom),xr(right),yt(top) 4 ''' 5 def calc_area(rect1, rect2): 6 xl1, yb1, xr1, yt1 = rect1 7 xl2, yb2, xr2, yt2 = rect2 8 x... 阅读全文
posted @ 2017-12-02 18:52 司徒道 阅读(4290) 评论(0) 推荐(0) 编辑