drufat/triangle

Theory-of-seismic-waves-II/02_Mesh_generation/4_Tri_mesh_delaunay_yigma_tepe.ipynb

Closed this issue · 1 comments

AttributeError Traceback (most recent call last)
in ()
2 cndt = triangle.triangulate(A,'pD')
3 ax = plt.subplot(111, aspect='equal')
----> 4 tplot.plot(ax,**cndt)

AttributeError: 'function' object has no attribute 'plot'

Since tplot is a function, the code should probably read:
tplot(ax,**cndt)

The triangle plot function is located in triangle.plot.