找出所有可能超出坐标的三角形 (python)

Finding all the triangles possible out of coordinates (python)

大家好,我是新来的。到目前为止,我已经从 Whosebug 获得了很多信息,非常感谢大家。

我得到了 6 个坐标:

答:(4,2) 乙:(6,1) C: (9,4) D: (8,9) 乙:(5,2) F: (2,2)

我有一个测量位置,假设 P=(3,7)

我想找出可以构成覆盖位置P的三角形的所有点的组合。我已经有一个代码来计算一个位置是否在三角形内:

# A utility function to calculate area
# of triangle formed by (x1, y1),
# (x2, y2) and (x3, y3)

def area(x1, y1, x2, y2, x3, y3):

    return abs((x1 * (y2 - y3) + x2 * (y3 - y1)
                + x3 * (y1 - y2)) / 2.0)


# A function to check whether point P(x, y)
# lies inside the triangle formed by
# A(x1, y1), B(x2, y2) and C(x3, y3)
def isInside(x1, y1, x2, y2, x3, y3, x, y):

    # Calculate area of triangle ABC
    A = area (x1, y1, x2, y2, x3, y3)

    # Calculate area of triangle PBC
    A1 = area (x, y, x2, y2, x3, y3)
    
    # Calculate area of triangle PAC
    A2 = area (x1, y1, x, y, x3, y3)
    
    # Calculate area of triangle PAB
    A3 = area (x1, y1, x2, y2, x, y)
    
    # Check if sum of A1, A2 and A3
    # is same as A
    if(A == A1 + A2 + A3):
        return True
    else:
        return False

# Driver program to test above function
# Let us check whether the point P(10, 15)
# lies inside the triangle formed by
# A(0, 0), B(20, 0) and C(10, 30)
if (isInside(0, 0, 20, 0, 10, 30, 10, 15)):
    print('Inside')
else:
    print('Not Inside')

但是这样我就得把所有的三角形一个一个拼出来。我正在寻找一种方法来计算覆盖点 P 的所有三角形。

作为额外信息,脚本的目标是进行三角形插值以确定 P 点的风速。

谁能帮我解决这个问题?我真的不知道如何使用所有可能的组合。

亲切的问候,

西蒙

一些注意事项: *使用蟒蛇 *使用 Spyder *我有能力使用模块

很高兴看到您已经在代码中付出了一些努力。

您可以使用 itertools [1] 中的 combinations 创建三角形:

import itertools
data = ['p1', 'p2', 'p3', 'p4', 'p5']

triangles = itertools.combinations(data, 3) 
print(*triangles, sep='\n')

输出:

('p1', 'p2', 'p3')
('p1', 'p2', 'p4')
('p1', 'p2', 'p5')
('p1', 'p3', 'p4')
('p1', 'p3', 'p5')
('p1', 'p4', 'p5')
('p2', 'p3', 'p4')
('p2', 'p3', 'p5')
('p2', 'p4', 'p5')
('p3', 'p4', 'p5')

三角形是一个生成器。您可以使用您的代码遍历每个三角形并检查现有代码以检查点 P 是否在三角形内。

在本例中我使用字符串作为元素,但你也可以使用元组:

import itertools
data = [(0,0), (1,1), (2,2), (2,3)]

triangles = itertools.combinations(data, 3) 
print(*triangles, sep='\n')

((0, 0), (1, 1), (2, 2))
((0, 0), (1, 1), (2, 3))
((0, 0), (2, 2), (2, 3))
((1, 1), (2, 2), (2, 3))

例如,您可以使用这部分代码作为起点:

import itertools

points = [(4,2), (6,1), (9,4), (8,9), (5,2), (2,2)]

P = (3,7)

for triangle in itertools.combinations(points, 3):
    p1, p2, p3 = triangle
    if isInside(*p1, *p2, *p3, *P):
        print(f"P {P} is in triangle: {triangle}")
    else:
        print(f"P {P} is NOT in triangle: {triangle}")

[1] https://docs.python.org/3/library/itertools.html#itertools.combinations