Skip to content

Commit

Permalink
reverting
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Oct 29, 2024
1 parent 27dca14 commit 47fdb88
Show file tree
Hide file tree
Showing 4 changed files with 256 additions and 257 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ def get_scip_library():
"src/subdivision.cpp",
"src/triangulations.cpp",
"src/skeletonization.cpp",
"src/reconstruction.cpp",
"src/polygonal_surface_reconstruction.cpp",
# "src/reconstruction.cpp",
# "src/polygonal_surface_reconstruction.cpp",
# "src/straight_skeleton_2.cpp",
]
),
Expand Down
10 changes: 5 additions & 5 deletions src/compas_cgal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ 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_polygonal_surface_reconstruction(pybind11::module &);
// void init_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 @@ -20,7 +20,7 @@ PYBIND11_MODULE(_cgal, m)
{
m.doc() = "";

// here all modules of "cgal" are initializied.
// here all modules of "_cgal" are initializied.
init_meshing(m);
init_booleans(m);
init_slicer(m);
Expand All @@ -29,7 +29,7 @@ PYBIND11_MODULE(_cgal, m)
init_triangulations(m);
init_subdivision(m);
init_skeletonization(m);
init_reconstruction(m);
init_polygonal_surface_reconstruction(m);
// init_reconstruction(m);
// init_polygonal_surface_reconstruction(m);
// init_straight_skeleton_2(m);
}
1 change: 0 additions & 1 deletion src/compas_cgal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
"compas_cgal.measure",
"compas_cgal.slicer",
"compas_cgal.triangulation",
# "compas_cgal.straight_skeleton_2",
]

__all__ = ["HOME", "DATA", "DOCS", "TEMP"]
Loading

0 comments on commit 47fdb88

Please # to comment.