本文整理汇总了Python中polygon.Polygon.get_number_of_intersected_sides方法的典型用法代码示例。如果您正苦于以下问题:Python Polygon.get_number_of_intersected_sides方法的具体用法?Python Polygon.get_number_of_intersected_sides怎么用?Python Polygon.get_number_of_intersected_sides使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类polygon.Polygon
的用法示例。
在下文中一共展示了Polygon.get_number_of_intersected_sides方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_should_retrive_each_side_that_crosses_the_Y_from_the_test_point
# 需要导入模块: from polygon import Polygon [as 别名]
# 或者: from polygon.Polygon import get_number_of_intersected_sides [as 别名]
def test_should_retrive_each_side_that_crosses_the_Y_from_the_test_point(self):
A = [3, 6]; B = [3, 11]; C = [6, 11]; D = [6, 9]; E = [5, 9]; F = [5, 6]
polygon = Polygon([A, B, C, D, E, F])
test_point = [4, 7]
assert_equals(polygon.get_number_of_intersected_sides(test_point), {"left" : 1, "right" : 1}) #note that the the vertical side CD must not to be returned