在SciPy中对Delauny进行三角剖分后,我如何获得面部和顶点?

时间:2019-07-10 17:40:40

标签: python numpy scipy 3d delaunay

我已经在这里(https://docs.scipy.org/doc/scipy/reference/generated/scipy.spatial.Delaunay.html)上多次阅读了SciPy文档,但似乎找不到答案。我只看到输出的简单文字。

我有这个函数,它接受一个3-D numpy数组

from scipy.spatial import Delaunay


def get_vertices(points):
    # Convert to mesh
    tri = Delaunay(points)
    faces = points[tri.simplices]

我如何获得顶点?我需要顶点和面来创建网格。

0 个答案:

没有答案