py_igl.mako 280 B

12345678910111213141516171819
  1. #include <Eigen/Dense>
  2. #include "python_shared.h"
  3. #include "modules/py_typedefs.h"
  4. % for f in functions:
  5. #include <igl/${f}.h>
  6. % endfor
  7. void python_export_igl(py::module &m)
  8. {
  9. #include "modules/py_typedefs.cpp"
  10. % for f in functions:
  11. #include "py_igl/py_${f}.cpp"
  12. % endfor
  13. }