File tree Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Expand file tree Collapse file tree 2 files changed +16
-16
lines changed Original file line number Diff line number Diff 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 = [
Original file line number Diff line number Diff line change 33
44namespace 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 &);
1111void init_triangulations (py::module &);
1212
1313PYBIND11_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}
You can’t perform that action at this time.
0 commit comments