py_igl.cpp 572 B

12345678910111213141516171819202122
  1. #include <Eigen/Dense>
  2. #include "python.h"
  3. #include <igl/readOFF.h>
  4. #include <igl/writeOBJ.h>
  5. #include <igl/per_face_normals.h>
  6. #include <igl/per_corner_normals.h>
  7. #include <igl/per_vertex_normals.h>
  8. #include <igl/gaussian_curvature.h>
  9. #include <igl/jet.h>
  10. void python_export_igl(py::module &m)
  11. {
  12. #include "py_igl/py_readOFF.cpp"
  13. #include "py_igl/py_writeOBJ.cpp"
  14. #include "py_igl/py_per_face_normals.cpp"
  15. #include "py_igl/py_per_corner_normals.cpp"
  16. #include "py_igl/py_per_vertex_normals.cpp"
  17. #include "py_igl/py_gaussian_curvature.cpp"
  18. #include "py_igl/py_jet.cpp"
  19. }