Skip to content
Snippets Groups Projects
Commit a0acbbbc authored by armar-user's avatar armar-user
Browse files

fix: Minor patch.

parent f87c51cc
No related branches found
No related tags found
No related merge requests found
......@@ -111,14 +111,14 @@ namespace armarx
kp.positionGlobal = posGlobal;
armarx::armem::arondto::FramedPosition posLocal;
posLocal.agent = localRobot->getName();
posLocal.frame = localRobot->getRootNode()->getName();
posLocal.position.x() = keypoint.x;
posLocal.position.y() = keypoint.y;
posLocal.position.z() = keypoint.z;
kp.positionGlobal = posLocal;
armarx::armem::arondto::FramedPosition posRobot;
posRobot.agent = localRobot->getName();
posRobot.frame = localRobot->getRootNode()->getName();
posRobot.position.x() = keypoint.x;
posRobot.position.y() = keypoint.y;
posRobot.position.z() = keypoint.z;
kp.positionRobot = posRobot;
dto.keypoints[kp.label] = kp;
}
......
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