Files
igl/python/py_igl/py_directed_edge_orientations.cpp
T
2016-07-12 17:15:40 +02:00

13 lines
256 B
C++

m.def("directed_edge_orientations", []
(
const Eigen::MatrixXd& C,
const Eigen::MatrixXi& E,
RotationList& Q
)
{
return igl::directed_edge_orientations(C, E, Q);
}, __doc_igl_directed_edge_orientations,
py::arg("C"), py::arg("E"), py::arg("Q"));