py_directed_edge_orientations.cpp 256 B

123456789101112
  1. m.def("directed_edge_orientations", []
  2. (
  3. const Eigen::MatrixXd& C,
  4. const Eigen::MatrixXi& E,
  5. RotationList& Q
  6. )
  7. {
  8. return igl::directed_edge_orientations(C, E, Q);
  9. }, __doc_igl_directed_edge_orientations,
  10. py::arg("C"), py::arg("E"), py::arg("Q"));