-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mesh build crash #26
Comments
Can you provide a backtrace? |
Ubuntu 16.04 and new meshpy from git same problem, segment fault. Could you provide instructions how to get backtrace? If you have everything setup it might be faster that you try out those five lines though. |
The crash is in
|
@cgohlke, thanks for tracking that down! That looks like an upstream (TetGen) bug. I've emailed Hang Si. |
Great to see some progress. This was not only happening with this tiny point data set. I did find some other data sets also caused crashing too. |
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?
The text was updated successfully, but these errors were encountered: