Skip to content

Commit ed42281

Browse files
committed
add polygonal reconstruction
1 parent 0a0d2a0 commit ed42281

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get_scip_library():
6363
"src/triangulations.cpp",
6464
"src/skeletonization.cpp",
6565
"src/reconstruction.cpp",
66-
# "src/polygonal_surface_reconstruction.cpp",
66+
"src/polygonal_surface_reconstruction.cpp",
6767
# "src/straight_skeleton_2.cpp",
6868
]
6969
),

src/compas_cgal.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ void init_triangulations(pybind11::module &);
1111
void init_subdivision(pybind11::module &);
1212
void init_skeletonization(pybind11::module &);
1313
void init_reconstruction(pybind11::module &);
14-
// void init_polygonal_surface_reconstruction(pybind11::module &);
14+
void init_polygonal_surface_reconstruction(pybind11::module &);
1515
// void init_straight_skeleton_2(pybind11::module &);
1616

1717
// the first parameter here ("_cgal") will be the name of the "so" or "pyd" file that will be produced by PyBind11
@@ -30,6 +30,6 @@ PYBIND11_MODULE(_cgal, m)
3030
init_subdivision(m);
3131
init_skeletonization(m);
3232
init_reconstruction(m);
33-
// init_polygonal_surface_reconstruction(m);
33+
init_polygonal_surface_reconstruction(m);
3434
// init_straight_skeleton_2(m);
3535
}

0 commit comments

Comments
 (0)