diff --git a/setup.py b/setup.py index df69441..c12af65 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ def get_scip_library(): "src/triangulations.cpp", "src/skeletonization.cpp", "src/reconstruction.cpp", - # "src/polygonal_surface_reconstruction.cpp", + "src/polygonal_surface_reconstruction.cpp", # "src/straight_skeleton_2.cpp", ] ), diff --git a/src/compas_cgal.cpp b/src/compas_cgal.cpp index 7235bee..5b9b0a1 100644 --- a/src/compas_cgal.cpp +++ b/src/compas_cgal.cpp @@ -11,7 +11,7 @@ void init_triangulations(pybind11::module &); void init_subdivision(pybind11::module &); void init_skeletonization(pybind11::module &); void init_reconstruction(pybind11::module &); -// void init_polygonal_surface_reconstruction(pybind11::module &); +void init_polygonal_surface_reconstruction(pybind11::module &); // void init_straight_skeleton_2(pybind11::module &); // 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) init_subdivision(m); init_skeletonization(m); init_reconstruction(m); - // init_polygonal_surface_reconstruction(m); + init_polygonal_surface_reconstruction(m); // init_straight_skeleton_2(m); }