Skip to content

Commit 54a6f4b

Browse files
committed
add back all modules
1 parent 0b247c2 commit 54a6f4b

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ def get_library_dirs():
5454
'compas_cgal._cgal',
5555
sorted([
5656
'src/compas_cgal.cpp',
57-
# 'src/compas.cpp',
58-
# 'src/meshing.cpp',
59-
# 'src/booleans.cpp',
60-
# 'src/slicer.cpp',
61-
# 'src/intersections.cpp',
62-
# 'src/measure.cpp',
57+
'src/compas.cpp',
58+
'src/meshing.cpp',
59+
'src/booleans.cpp',
60+
'src/slicer.cpp',
61+
'src/intersections.cpp',
62+
'src/measure.cpp',
6363
'src/triangulations.cpp',
6464
]),
6565
include_dirs=[

src/compas_cgal.cpp

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
namespace py = pybind11;
55

6-
// void init_meshing(py::module&);
7-
// void init_booleans(py::module&);
8-
// void init_slicer(py::module&);
9-
// void init_intersections(py::module&);
10-
// void init_measure(py::module&);
6+
void init_meshing(py::module&);
7+
void init_booleans(py::module&);
8+
void init_slicer(py::module&);
9+
void init_intersections(py::module&);
10+
void init_measure(py::module&);
1111
void init_triangulations(py::module&);
1212

1313
PYBIND11_MODULE(_cgal, m) {
@@ -17,10 +17,10 @@ PYBIND11_MODULE(_cgal, m) {
1717
.def_readonly("vertices", &compas::Result::vertices)
1818
.def_readonly("faces", &compas::Result::faces);
1919

20-
// init_meshing(m);
21-
// init_booleans(m);
22-
// init_slicer(m);
23-
// init_intersections(m);
24-
// init_measure(m);
20+
init_meshing(m);
21+
init_booleans(m);
22+
init_slicer(m);
23+
init_intersections(m);
24+
init_measure(m);
2525
init_triangulations(m);
2626
}

0 commit comments

Comments
 (0)