py_igl.mako 211 B

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