12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #include "python_shared.h"
- #include <sstream>
- #include <string>
- #include <fstream>
- extern void python_export_vector(py::module &);
- extern void python_export_igl(py::module &);
- #ifdef PY_VIEWER
- extern void python_export_igl_viewer(py::module &);
- #endif
- #ifdef PY_COMISO
- extern void python_export_igl_comiso(py::module &);
- #endif
- #ifdef PY_TETGEN
- extern void python_export_igl_tetgen(py::module &);
- #endif
- #ifdef PY_EMBREE
- extern void python_export_igl_embree(py::module &);
- #endif
- #ifdef PY_TRIANGLE
- extern void python_export_igl_triangle(py::module &);
- #endif
- #ifdef PY_CGAL
- extern void python_export_igl_cgal(py::module &);
- #endif
- #ifdef PY_PNG
- extern void python_export_igl_png(py::module &);
- #endif
- #ifdef PY_COPYLEFT
- extern void python_export_igl_copyleft(py::module &);
- #endif
- PYBIND11_PLUGIN(pyigl) {
- py::module m("pyigl", R"pyigldoc(
- Python wrappers for libigl
- --------------------------
- .. currentmodule:: pyigl
- .. autosummary::
- :toctree: _generate
- % for f in functions:
- ${f}
- % endfor
- )pyigldoc");
- python_export_vector(m);
- python_export_igl(m);
- #ifdef PY_VIEWER
- python_export_igl_viewer(m);
- #endif
- #ifdef PY_COMISO
- python_export_igl_comiso(m);
- #endif
- #ifdef PY_TETGEN
- python_export_igl_tetgen(m);
- #endif
- #ifdef PY_EMBREE
- python_export_igl_embree(m);
- #endif
- #ifdef PY_TRIANGLE
- python_export_igl_triangle(m);
- #endif
- #ifdef PY_CGAL
- python_export_igl_cgal(m);
- #endif
- #ifdef PY_PNG
- python_export_igl_png(m);
- #endif
- #ifdef PY_COPYLEFT
- python_export_igl_copyleft(m);
- #endif
- return m.ptr();
- }
|