py_rotate_vectors.cpp 303 B

123456789101112
  1. m.def("rotate_vectors", []
  2. (
  3. const Eigen::MatrixXd& V,
  4. const Eigen::MatrixXd& A,
  5. const Eigen::MatrixXd& B1,
  6. const Eigen::MatrixXd& B2
  7. )
  8. {
  9. assert_is_VectorX("A",A);
  10. return igl::rotate_vectors(V,A,B1,B2);
  11. }, __doc_igl_rotate_vectors,
  12. py::arg("V"), py::arg("A"), py::arg("B1"), py::arg("B2"));