19 #include <pinocchio/bindings/python/utils/deprecation.hpp> 41 bp::def(
"SE3ToVector", &
SE3ToVector, bp::args(
"M",
"vec"),
42 "Convert the input SE3 object M to a 12D vector of floats " 43 "[X,Y,Z,R11,R12,R13,R14,...] vec");
45 "Convert the input SE3 object M to a 12D vector of floats " 46 "[X,Y,Z,R11,R12,R13,R14,...] and return the vector");
47 bp::def(
"vectorToSE3", &
vectorToSE3, bp::args(
"vec",
"M"),
48 "Convert the input 12D vector of floats [X,Y,Z,R11,R12,R13,R14,...] " 49 "vec to a SE3 object M");
51 "Convert the input 12D vector of floats [X,Y,Z,R11,R12,R13,R14,...] " 52 "vec to a SE3 object and return the SE3 object");
Eigen::Ref< Vector > RefVector
void SE3ToVector(const pinocchio::SE3 &M, RefVector vec)
Eigen::Matrix< Scalar, Eigen::Dynamic, 1 > Vector
static pinocchio::SE3 vectorToSE3_1(math::RefVector vec)
void vectorToSE3(RefVector vec, pinocchio::SE3 &M)
static math::Vector SE3ToVector_1(const pinocchio::SE3 &M)