Skip to content

Commit

Permalink
one by one 2b
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Oct 2, 2024
1 parent b963a1c commit 4622e43
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 61 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_scip_library():
"src/skeletonization.cpp",
"src/reconstruction.cpp",
"src/polygonal_surface_reconstruction.cpp",
# "src/straight_skeleton_2.cpp",
"src/straight_skeleton_2.cpp",
]
),
include_dirs=["./include", get_eigen_include(), get_pybind_include()],
Expand Down
4 changes: 2 additions & 2 deletions src/compas_cgal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ void init_subdivision(pybind11::module &);
void init_skeletonization(pybind11::module &);
void init_reconstruction(pybind11::module &);
void init_polygonal_surface_reconstruction(pybind11::module &);
// void init_straight_skeleton_2(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
// which is the entry point from where all other modules will be accessible.
Expand All @@ -31,5 +31,5 @@ PYBIND11_MODULE(_cgal, m)
init_skeletonization(m);
init_reconstruction(m);
init_polygonal_surface_reconstruction(m);
// init_straight_skeleton_2(m);
init_straight_skeleton_2(m);
}
58 changes: 0 additions & 58 deletions tests/test_straight_skeleton_2.py

This file was deleted.

0 comments on commit 4622e43

Please sign in to comment.