gitextract_n_8d0dfa/ ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.defs ├── README ├── TODO ├── meshes/ │ ├── block.feat │ ├── block.obj │ ├── bunny_watertight.obj │ ├── cow.obj │ ├── cube.feat │ ├── cube.obj │ ├── dragon.obj │ ├── fandisk.feat │ ├── fandisk.obj │ ├── joint.feat │ ├── joint.obj │ └── sphere.obj └── src/ ├── array3.h ├── feature.cpp ├── feature.h ├── geometry_queries.cpp ├── geometry_queries.h ├── gluvi.cpp ├── gluvi.h ├── main.cpp ├── make_signed_distance.cpp ├── make_signed_distance.h ├── make_tet_mesh.cpp ├── make_tet_mesh.h ├── match_features.cpp ├── match_features.h ├── optimize_tet_mesh.cpp ├── optimize_tet_mesh.h ├── predicates.cpp ├── read_obj.cpp ├── read_obj.h ├── sdf.cpp ├── sdf.h ├── tet_mesh.cpp ├── tet_mesh.h ├── tet_quality.cpp ├── tet_quality.h ├── trimesh.cpp ├── trimesh.h ├── util.h ├── vec.h └── view_tet.cpp