Skip to content
Snippets Groups Projects
Commit d5779075 authored by Patrick Hegemann's avatar Patrick Hegemann
Browse files

Add grasp inwards vectors to bimanual grasp class

parent b167f020
No related branches found
No related tags found
No related merge requests found
......@@ -100,9 +100,13 @@ module armarx
PoseBase graspPoseRight;
PoseBase graspPoseLeft;
PoseBase robotPose;
Vector3Base approachVectorRight;
Vector3Base approachVectorLeft;
Vector3Base inwardsVectorRight;
Vector3Base inwardsVectorLeft;
string sourceFrame; // frame where graspPose is located
string targetFrame; // frame which should be moved to graspPose
......
......@@ -79,7 +79,8 @@ namespace armarx
void PositionControllerHelper::updateWrite()
{
Eigen::VectorXf cv = posController.calculate(getCurrentTarget(), VirtualRobot::IKSolver::All);
auto target = getCurrentTarget();
Eigen::VectorXf cv = posController.calculate(target, VirtualRobot::IKSolver::All);
velocityControllerHelper->setTargetVelocity(cv + feedForwardVelocity);
if (autoClearFeedForward)
{
......
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