123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- m.def("mesh_boolean", []
- (
- const Eigen::MatrixXd& VA,
- const Eigen::MatrixXi& FA,
- const Eigen::MatrixXd& VB,
- const Eigen::MatrixXi& FB,
- igl::MeshBooleanType & type,
- Eigen::MatrixXd& VC,
- Eigen::MatrixXi& FC,
- Eigen::MatrixXi& J
- )
- {
- return igl::copyleft::cgal::mesh_boolean(VA, FA, VB, FB, type, VC, FC, J);
- }, __doc_igl_copyleft_cgal_mesh_boolean,
- py::arg("VA"), py::arg("FA"), py::arg("VB"), py::arg("FB"), py::arg("type"), py::arg("VC"), py::arg("FC"), py::arg("J"));
- m.def("mesh_boolean", []
- (
- const Eigen::MatrixXd& VA,
- const Eigen::MatrixXi& FA,
- const Eigen::MatrixXd& VB,
- const Eigen::MatrixXi& FB,
- const std::string & type_str,
- Eigen::MatrixXd& VC,
- Eigen::MatrixXi& FC,
- Eigen::MatrixXi& J
- )
- {
- return igl::copyleft::cgal::mesh_boolean(VA, FA, VB, FB, type_str, VC, FC, J);
- }, __doc_igl_copyleft_cgal_mesh_boolean,
- py::arg("VA"), py::arg("FA"), py::arg("VB"), py::arg("FB"), py::arg("type_str"), py::arg("VC"), py::arg("FC"), py::arg("J"));
- m.def("mesh_boolean", []
- (
- const Eigen::MatrixXd& VA,
- const Eigen::MatrixXi& FA,
- const Eigen::MatrixXd& VB,
- const Eigen::MatrixXi& FB,
- const igl::MeshBooleanType & type,
- Eigen::MatrixXd& VC,
- Eigen::MatrixXi& FC
- )
- {
- return igl::copyleft::cgal::mesh_boolean(VA, FA, VB, FB, type, VC, FC);
- }, __doc_igl_copyleft_cgal_mesh_boolean,
- py::arg("VA"), py::arg("FA"), py::arg("VB"), py::arg("FB"), py::arg("type"), py::arg("VC"), py::arg("FC"));
|