py_RemeshSelfIntersectionsParam.cpp 679 B

1234567891011121314
  1. py::class_<igl::copyleft::cgal::RemeshSelfIntersectionsParam > RemeshSelfIntersectionsParam(m, "RemeshSelfIntersectionsParam");
  2. RemeshSelfIntersectionsParam
  3. .def("__init__", [](igl::copyleft::cgal::RemeshSelfIntersectionsParam &m)
  4. {
  5. new (&m) igl::copyleft::cgal::RemeshSelfIntersectionsParam();
  6. m.detect_only = false;
  7. m.first_only = false;
  8. m.stitch_all = false;
  9. })
  10. .def_readwrite("detect_only", &igl::copyleft::cgal::RemeshSelfIntersectionsParam::detect_only)
  11. .def_readwrite("first_only", &igl::copyleft::cgal::RemeshSelfIntersectionsParam::first_only)
  12. .def_readwrite("stitch_all", &igl::copyleft::cgal::RemeshSelfIntersectionsParam::stitch_all)
  13. ;