"Computes the centroidal mapping, the centroidal momentum and the Centroidal Composite Rigid Body Inertia, puts the result in Data and returns the centroidal mapping.",
bp::return_value_policy<bp::return_by_value>());
bp::def("dccrba",dccrba,
bp::args("Model","Data",
"Joint configuration q (size Model::nq)",
"Joint velocity v (size Model::nv)"),
"Computes the time derivative of the centroidal momentum matrix Ag in terms of q and v. It computes also the same information than ccrtba for the same price.",
// Pinocchio is free software: you can redistribute it
...
...
@@ -39,21 +39,6 @@ namespace se3
bp::args("Model","Data",
"Joint configuration q (size Model::nq)"),
"Computes CRBA, put the result in Data and return it.");
bp::def("ccrba",ccrba,
bp::args("Model","Data",
"Joint configuration q (size Model::nq)",
"Joint velocity v (size Model::nv)"),
"Computes the centroidal mapping, the centroidal momentum and the Centroidal Composite Rigid Body Inertia, puts the result in Data and returns the centroidal mapping.",
bp::return_value_policy<bp::return_by_value>());
bp::def("dccrba",dccrba,
bp::args("Model","Data",
"Joint configuration q (size Model::nq)",
"Joint velocity v (size Model::nv)"),
"Computes the time derivative of the centroidal momentum matrix Ag in terms of q and v. It computes also the same information than ccrtba for the same price.",