We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 642e059 commit 9f7136fCopy full SHA for 9f7136f
src/compas_cgal.cpp
@@ -11,13 +11,16 @@ void init_measure(py::module&);
11
void init_triangulations(py::module&);
12
void init_subdivision(py::module&);
13
14
+// the first parameter here ("_cgal") will be the name of the "so" or "pyd" file that will be produced by PyBind11
15
+// which is the entry point from where all other modules will be accessible.
16
PYBIND11_MODULE(_cgal, m) {
17
m.doc() = "";
18
19
py::class_<compas::Result>(m, "Result")
20
.def_readonly("vertices", &compas::Result::vertices)
21
.def_readonly("faces", &compas::Result::faces);
22
23
+ // here all modules of "_cgal" are initializied.
24
init_meshing(m);
25
init_booleans(m);
26
init_slicer(m);
0 commit comments