Skip to content

Commit

Permalink
add reconstruction
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Oct 29, 2024
1 parent 47fdb88 commit 0a0d2a0
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 @@ -62,7 +62,7 @@ def get_scip_library():
"src/subdivision.cpp",
"src/triangulations.cpp",
"src/skeletonization.cpp",
# "src/reconstruction.cpp",
"src/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 @@ -10,7 +10,7 @@ void init_measure(pybind11::module &);
void init_triangulations(pybind11::module &);
void init_subdivision(pybind11::module &);
void init_skeletonization(pybind11::module &);
// void init_reconstruction(pybind11::module &);
void init_reconstruction(pybind11::module &);
// void init_polygonal_surface_reconstruction(pybind11::module &);
// void init_straight_skeleton_2(pybind11::module &);

Expand All @@ -29,7 +29,7 @@ PYBIND11_MODULE(_cgal, m)
init_triangulations(m);
init_subdivision(m);
init_skeletonization(m);
// init_reconstruction(m);
init_reconstruction(m);
// init_polygonal_surface_reconstruction(m);
// init_straight_skeleton_2(m);
}

0 comments on commit 0a0d2a0

Please # to comment.