Skip to content
Snippets Groups Projects
Commit d7959070 authored by Fabian Reister's avatar Fabian Reister
Browse files

VelocityControllerHelper: changing VectorXf to Vector6f

VectorXf is not guaranted to have 6 elements.
parent 988e83af
No related branches found
No related tags found
2 merge requests!156Some minor changes,!154armem_robot_state: updates
This commit is part of merge request !156. Comments created here will be created in the context of that merge request.
......@@ -57,7 +57,7 @@ namespace armarx
controller->activateController();
}
void VelocityControllerHelper::setTargetVelocity(const Eigen::VectorXf& cv)
void VelocityControllerHelper::setTargetVelocity(const Eigen::Vector6f& cv)
{
controller->setTargetVelocity(cv(0), cv(1), cv(2), cv(3), cv(4), cv(5));
}
......
......@@ -43,7 +43,7 @@ namespace armarx
void init();
void setTargetVelocity(const Eigen::VectorXf& cv);
void setTargetVelocity(const Eigen::Vector6f& cv);
void setNullSpaceControl(bool enabled);
......
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