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 @@ -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 ),
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ void init_triangulations(pybind11::module &);
1111void init_subdivision (pybind11::module &);
1212void init_skeletonization (pybind11::module &);
1313void 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}
You can’t perform that action at this time.
0 commit comments