I'm using windows:MeshPy‑2016.1.2+unstable‑cp35‑cp35m‑win_amd64.whl.
Following code crash python:
from meshpy.tet import MeshInfo, build
mesh_info = MeshInfo()
mesh_info.set_points([(0,0,0), (2,0,0), (2,2,0)])
mesh_info.set_facets([[0,1,2]])
mesh = build(mesh_info)
What I'm doing wrong?