Skip to content

Commit 7dcc901

Browse files
author
Teseo Schneider
committed
updated all
1 parent e211a27 commit 7dcc901

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

cmake/WildMeshingDownloadExternal.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ endfunction()
2727
function(wildmeshing_download_triwild)
2828
wildmeshing_download_project(triwild
2929
GIT_REPOSITORY https://github.com/wildmeshing/TriWild
30-
GIT_TAG 90e45669acdf8c453f287da62757a8acf07fbb57
30+
GIT_TAG a69ef125e5c6e336f1bd982afadefbc87a92398e
3131
)
3232
endfunction()
3333

3434
function(wildmeshing_download_tetwild)
3535
wildmeshing_download_project(tetwild
3636
GIT_REPOSITORY https://github.com/wildmeshing/fTetWild
37-
GIT_TAG c1a63cbbd8fc0c23efbb636a457477e86fc20f89
37+
GIT_TAG bcc40351617fa2a00beaeec8aff38c5468a4a41a
3838
)
3939
endfunction()
4040

setup.py

Lines changed: 1 addition & 1 deletion
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.3",
76+
version="0.3.0.2",
7777
author="Teseo Schneider",
7878
author_email="",
7979
description="WildMeshing Bindings",

src/triangulate.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ void triangulate(py::module &m)
116116
igl_timer.start();
117117
MeshData mesh;
118118
std::vector<std::vector<int>> tag_boundary_es;
119-
triangulation::BSP_subdivision(V, edges, mesh, tag_boundary_es);
119+
triangulation::BSP_subdivision(V, edges, mesh, tag_boundary_es, b_tree);
120120
t = igl_timer.getElapsedTime();
121121
bsp_time = t;
122122
cout << "BSP subdivision done." << endl;

0 commit comments

Comments
 (0)