getting sigserv (abnormal signal termination) when trying to use tetrahedralization
amirbarda opened this issue · 1 comments
amirbarda commented
Hi,
I have successfully built the library, and generated a tet mesh using the executable, but when trying to integrate tetwild in to my code with #include <tetwild\tetwild.h> i am getting the following error:
Abnormal program termination: received signal 11 (SIGSEGV)
the relevant minimal code snippet is:
Eigen::MatrixXi Ftet;
Eigen::VectorXd A0;
Eigen::MatrixXd Vtet;
tetwild::Args args;
tetwild::tetrahedralization(cutV, cutF, Vtet, Ftet, A0, args);
I know that cutV and cutF are fine.
I am including the following libraries:
fmt.lib
geogram.lib
pymesh_tiny.lib
tetwild.lib
What am I doing wrong?
Yixin-Hu commented
Hi, did you try write the input vertices/faces into disk and try the binary of tetwild? Could you share the input mesh?