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

[Python][Fix bug] Correct way to access Jcom in data

parent 83dd1e91
No related branches found
No related tags found
No related merge requests found
......@@ -94,7 +94,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(Matrix3x,Jcom,"Jacobian of center of mass.")
.ADD_DATA_PROPERTY_CONST(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")
......@@ -132,7 +132,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(Matrix3x,Jcom,"Jacobian of center of mass.")
IMPL_DATA_PROPERTY_CONST(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.
Finish editing this message first!
Please register or to comment