py_igl_bbw.cpp 312 B

123456789101112131415161718
  1. //#include <Eigen/Geometry>
  2. //#include <Eigen/Dense>
  3. //#include <Eigen/Sparse>
  4. #include "../python_shared.h"
  5. #include <igl/bbw.h>
  6. void python_export_igl_bbw(py::module &me) {
  7. py::module m = me.def_submodule(
  8. "bbw", "Wrappers for libigl functions that use bbw");
  9. #include "../py_igl/py_bbw.cpp"
  10. }