1import matplotlib.pyplot as plt
2
3import triangle as tr
4
5box = tr.get_data('box')
6t = tr.triangulate(box, 'pc')
7
8tr.compare(plt, box, t)
9plt.show()
10