5 ms·
If you're using Python anyway, you can use scipy's triangulation module to avoid having to compile triangle: https://docs.scipy.org/doc/scipy-0.14.0/reference/
by phireal 9y ago
If you're using Python anyway, you can use scipy's triangulation module to avoid having to compile triangle:
https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.spatial.Delaunay.html https://docs.scipy.org/doc/scipy-0.14.0/reference/generated/...
The triangulation can then be plotted fairly straightforwardly with matplotlib's triangulation routines: matplotlib.pyplot.triplot and matplotlib.pyplot.tripcolor (https://matplotlib.org/examples/pylab_examples/tripcolor_demo.html https://matplotlib.org/examples/pylab_examples/tripcolor_dem...).