Skip to content

Commit

Permalink
updated all
Browse files Browse the repository at this point in the history
  • Loading branch information
teseoch committed Feb 24, 2020
1 parent e211a27 commit 7dcc901
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmake/WildMeshingDownloadExternal.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ endfunction()
function(wildmeshing_download_triwild)
wildmeshing_download_project(triwild
GIT_REPOSITORY https://github.com/wildmeshing/TriWild
GIT_TAG 90e45669acdf8c453f287da62757a8acf07fbb57
GIT_TAG a69ef125e5c6e336f1bd982afadefbc87a92398e
)
endfunction()

function(wildmeshing_download_tetwild)
wildmeshing_download_project(tetwild
GIT_REPOSITORY https://github.com/wildmeshing/fTetWild
GIT_TAG c1a63cbbd8fc0c23efbb636a457477e86fc20f89
GIT_TAG bcc40351617fa2a00beaeec8aff38c5468a4a41a
)
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.3",
version="0.3.0.2",
author="Teseo Schneider",
author_email="",
description="WildMeshing Bindings",
Expand Down
2 changes: 1 addition & 1 deletion src/triangulate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ void triangulate(py::module &m)
igl_timer.start();
MeshData mesh;
std::vector<std::vector<int>> tag_boundary_es;
triangulation::BSP_subdivision(V, edges, mesh, tag_boundary_es);
triangulation::BSP_subdivision(V, edges, mesh, tag_boundary_es, b_tree);
t = igl_timer.getElapsedTime();
bsp_time = t;
cout << "BSP subdivision done." << endl;
Expand Down

0 comments on commit 7dcc901

Please sign in to comment.