py_column_to_quats.cpp 180 B

12345678910
  1. m.def("column_to_quats", []
  2. (
  3. const Eigen::MatrixXd& Q,
  4. RotationList& vQ
  5. )
  6. {
  7. return igl::column_to_quats(Q, vQ);
  8. }, __doc_igl_column_to_quats,
  9. py::arg("Q"), py::arg("vQ"));