Skip to content

Commit 9f7136f

Browse files
committed
comments
1 parent 642e059 commit 9f7136f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/compas_cgal.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,16 @@ void init_measure(py::module&);
1111
void init_triangulations(py::module&);
1212
void init_subdivision(py::module&);
1313

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.
1416
PYBIND11_MODULE(_cgal, m) {
1517
m.doc() = "";
1618

1719
py::class_<compas::Result>(m, "Result")
1820
.def_readonly("vertices", &compas::Result::vertices)
1921
.def_readonly("faces", &compas::Result::faces);
2022

23+
// here all modules of "_cgal" are initializied.
2124
init_meshing(m);
2225
init_booleans(m);
2326
init_slicer(m);

0 commit comments

Comments
 (0)