Skip to content

Commit 1f18b41

Browse files
committed
updated ftetwild
1 parent db17f45 commit 1f18b41

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

Diff for: .gitignore

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,8 @@ build
66
__pycache__
77
*.code-workspace
88
*.so
9-
*.msh*
9+
*.msh*
10+
*.stl
11+
dist
12+
wildmeshing/__init__.pyc
13+
*.html

Diff for: cmake/WildMeshingDownloadExternal.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ endfunction()
3434
function(wildmeshing_download_tetwild)
3535
wildmeshing_download_project(tetwild
3636
GIT_REPOSITORY https://github.com/wildmeshing/fTetWild
37-
GIT_TAG cdca6ec6059be0b585377b19aae5fa04643262e9
37+
GIT_TAG b00da6cb2f76c0f6461584ab5c612f29fb0535f7
3838
)
3939
endfunction()
4040

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def build_extension(self, ext):
7373

7474
setup(
7575
name="wildmeshing",
76-
version="0.2.1",
76+
version="0.3",
7777
author="Teseo Schneider",
7878
author_email="",
7979
description="WildMeshing Bindings",

Diff for: src/tetrahedralize.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ class Tetrahedralizer
266266

267267
timer.start();
268268
simplify(input_vertices, input_faces, input_tags, *tree, params, skip_simplify);
269-
tree->init_b_mesh_and_tree(input_vertices, input_faces);
269+
tree->init_b_mesh_and_tree(input_vertices, input_faces, mesh);
270270
logger().info("preprocessing {}s", timer.getElapsedTimeInSec());
271271
logger().info("");
272272
stats().record(StateInfo::preprocessing_id, timer.getElapsedTimeInSec(), input_vertices.size(),

0 commit comments

Comments
 (0)