Is there anyway to get all the simplices/triangles a certain point is a part of in a Delaunay triangulation using scipy.spatial.Delaunay
?
I know there is the find_simplex()
function, that that only returns 1 triangle that a point is a part of but I would like to get all triangles that it is a part of.
So in the example, when I do find_simplex()
for point 6, it only returns triangle 2, but I would like it to return the triangles 1, 2, 3, 4, 10, and 9, as point 6 is a part of all of those triangles.
Any help would be appreciated!