Skip to content
Snippets Groups Projects
Commit ec04599c authored by jcarpent's avatar jcarpent
Browse files

[Python] Change constness for the center of mass jacobian

parent 02cd2a4a
Branches
Tags
No related merge requests found
......@@ -92,7 +92,7 @@ namespace se3
.ADD_DATA_PROPERTY(std::vector<Vector3>,vcom,"Subtree com velocity.")
.ADD_DATA_PROPERTY(std::vector<Vector3>,acom,"Subtree com acceleration.")
.ADD_DATA_PROPERTY(std::vector<double>,mass,"Subtree total mass.")
.ADD_DATA_PROPERTY_CONST(Matrix3x,Jcom,"Jacobian of center of mass.")
.ADD_DATA_PROPERTY(Matrix3x,Jcom,"Jacobian of center of mass.")
.ADD_DATA_PROPERTY_CONST(Eigen::VectorXd,effortLimit,"Joint max effort")
.ADD_DATA_PROPERTY_CONST(Eigen::VectorXd,velocityLimit,"Joint max velocity")
......@@ -128,7 +128,7 @@ namespace se3
IMPL_DATA_PROPERTY(std::vector<Vector3>,vcom,"Subtree com velocity.")
IMPL_DATA_PROPERTY(std::vector<Vector3>,acom,"Subtree com acceleration.")
IMPL_DATA_PROPERTY(std::vector<double>,mass,"Subtree total mass.")
IMPL_DATA_PROPERTY_CONST(Matrix3x,Jcom,"Jacobian of center of mass.")
IMPL_DATA_PROPERTY(Matrix3x,Jcom,"Jacobian of center of mass.")
IMPL_DATA_PROPERTY_CONST(Eigen::VectorXd,effortLimit,"Joint max effort")
IMPL_DATA_PROPERTY_CONST(Eigen::VectorXd,velocityLimit,"Joint max velocity")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment