Skip to content

Commit

Permalink
updated ftetwild
Browse files Browse the repository at this point in the history
  • Loading branch information
teseoch committed Jan 24, 2020
1 parent db17f45 commit 1f18b41
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ build
__pycache__
*.code-workspace
*.so
*.msh*
*.msh*
*.stl
dist
wildmeshing/__init__.pyc
*.html
2 changes: 1 addition & 1 deletion cmake/WildMeshingDownloadExternal.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ endfunction()
function(wildmeshing_download_tetwild)
wildmeshing_download_project(tetwild
GIT_REPOSITORY https://github.com/wildmeshing/fTetWild
GIT_TAG cdca6ec6059be0b585377b19aae5fa04643262e9
GIT_TAG b00da6cb2f76c0f6461584ab5c612f29fb0535f7
)
endfunction()

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def build_extension(self, ext):

setup(
name="wildmeshing",
version="0.2.1",
version="0.3",
author="Teseo Schneider",
author_email="",
description="WildMeshing Bindings",
Expand Down
2 changes: 1 addition & 1 deletion src/tetrahedralize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ class Tetrahedralizer

timer.start();
simplify(input_vertices, input_faces, input_tags, *tree, params, skip_simplify);
tree->init_b_mesh_and_tree(input_vertices, input_faces);
tree->init_b_mesh_and_tree(input_vertices, input_faces, mesh);
logger().info("preprocessing {}s", timer.getElapsedTimeInSec());
logger().info("");
stats().record(StateInfo::preprocessing_id, timer.getElapsedTimeInSec(), input_vertices.size(),
Expand Down

0 comments on commit 1f18b41

Please sign in to comment.