Files
igl/python/py_igl/py_min_quad_with_fixed.cpp
T
2015-09-12 21:45:11 +02:00

63 lines
1.9 KiB
C++

// Wrap the data class, no properties are exposed since it is not necessary
py::class_<igl::min_quad_with_fixed_data<double> > min_quad_with_fixed_data(m, "min_quad_with_fixed_data");
min_quad_with_fixed_data
.def(py::init<>());
m.def("min_quad_with_fixed_precompute", []
(
const Eigen::SparseMatrix<double>& A,
const Eigen::MatrixXi& known,
const Eigen::SparseMatrix<double>& Aeq,
const bool pd,
igl::min_quad_with_fixed_data<double> & data
)
{
return igl::min_quad_with_fixed_precompute(A,known,Aeq,pd,data);
}, __doc_igl_min_quad_with_fixed,
py::arg("A"), py::arg("known"), py::arg("Aeq"), py::arg("pd"), py::arg("data"));
m.def("min_quad_with_fixed_solve", []
(
const igl::min_quad_with_fixed_data<double> & data,
const Eigen::MatrixXd& B,
const Eigen::MatrixXd& Y,
const Eigen::MatrixXd & Beq,
Eigen::MatrixXd& Z,
Eigen::MatrixXd& sol
)
{
return igl::min_quad_with_fixed_solve(data,B,Y,Beq,Z,sol);
}, __doc_igl_min_quad_with_fixed,
py::arg("data"), py::arg("B"), py::arg("Y"), py::arg("Beq"), py::arg("Z"), py::arg("sol"));
m.def("min_quad_with_fixed_solve", []
(
const igl::min_quad_with_fixed_data<double> & data,
const Eigen::MatrixXd& B,
const Eigen::MatrixXd& Y,
const Eigen::MatrixXd & Beq,
Eigen::MatrixXd& Z
)
{
return igl::min_quad_with_fixed_solve(data,B,Y,Beq,Z);
}, __doc_igl_min_quad_with_fixed,
py::arg("data"), py::arg("B"), py::arg("Y"), py::arg("Beq"), py::arg("Z"));
m.def("min_quad_with_fixed", []
(
const Eigen::SparseMatrix<double>& A,
const Eigen::MatrixXd& B,
const Eigen::MatrixXi& known,
const Eigen::MatrixXd& Y,
const Eigen::SparseMatrix<double>& Aeq,
const Eigen::MatrixXd& Beq,
const bool pd,
Eigen::MatrixXd& Z
)
{
return igl::min_quad_with_fixed(A,B,known,Y,Aeq,Beq,pd,Z);
}, __doc_igl_min_quad_with_fixed,
py::arg("A"), py::arg("B"), py::arg("known"), py::arg("Y"), py::arg("Aeq"), py::arg("Beq"), py::arg("pd"), py::arg("Z"));