Delaunay 算法形式 scipy.spatial

Delaunay Algorithm form scipy.spatial

我在互联网上看了很多,但我找不到 scipy.spatial python 中使用的 Delaunay 源文件 如果有人能给我这个算法的源文件,我会很高兴

In [121]: spatial.Delaunay??
Init signature: spatial.Delaunay(points, furthest_site=False, incremental=False, qhull_options=None)
File:           /usr/local/lib/python3.5/dist-packages/scipy/spatial/qhull.cpython-35m-i386-linux-gnu.so
Type:           type

github目录有一个

scipy/scipy/spatial/qhull.pyx
scipy/scipy/spatial/qhull/

所以它是 https://github.com/qhull/qhull 包的 Cython 包装器。