Skip to content

Commit

Permalink
add polygonal reconstruction
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Oct 29, 2024
1 parent 0a0d2a0 commit ed42281
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
),
Expand Down
4 changes: 2 additions & 2 deletions src/compas_cgal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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);
}

0 comments on commit ed42281

Please # to comment.