// This file is part of libigl, a simple c++ geometry processing library. // // Copyright (C) 2017 Sebastian Koch and Daniele Panozzo // // This Source Code Form is subject to the terms of the Mozilla Public License // v. 2.0. If a copy of the MPL was not distributed with this file, You can // obtain one at http://mozilla.org/MPL/2.0/. m.def("dqs", [] ( const Eigen::MatrixXd& V, const Eigen::MatrixXd& W, const RotationList& vQ, const std::vector & vT, Eigen::MatrixXd& U ) { std::vector vTv; for (auto item : vT) { assert_is_Vector3("item", item); Eigen::Vector3d obj = Eigen::Vector3d(item); vTv.push_back(obj); } return igl::dqs(V, W, vQ, vTv, U); }, __doc_igl_dqs, py::arg("V"), py::arg("W"), py::arg("vQ"), py::arg("vT"), py::arg("U"));