File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ def get_scip_library():
6262 "src/subdivision.cpp" ,
6363 "src/triangulations.cpp" ,
6464 "src/skeletonization.cpp" ,
65- # "src/reconstruction.cpp",
65+ "src/reconstruction.cpp" ,
6666 # "src/polygonal_surface_reconstruction.cpp",
6767 # "src/straight_skeleton_2.cpp",
6868 ]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ void init_measure(pybind11::module &);
1010void init_triangulations (pybind11::module &);
1111void init_subdivision (pybind11::module &);
1212void init_skeletonization (pybind11::module &);
13- // void init_reconstruction(pybind11::module &);
13+ void init_reconstruction (pybind11::module &);
1414// void init_polygonal_surface_reconstruction(pybind11::module &);
1515// void init_straight_skeleton_2(pybind11::module &);
1616
@@ -29,7 +29,7 @@ PYBIND11_MODULE(_cgal, m)
2929 init_triangulations (m);
3030 init_subdivision (m);
3131 init_skeletonization (m);
32- // init_reconstruction(m);
32+ init_reconstruction (m);
3333 // init_polygonal_surface_reconstruction(m);
3434 // init_straight_skeleton_2(m);
3535}
You can’t perform that action at this time.
0 commit comments