diff --git a/etc/doxygen/pages/armarpose.dox b/etc/doxygen/pages/armarpose.dox index c3c4b2494f9de2f04f007489180acdfb40b8ce70..4dcacff7b984c98f7b2070a6db9dbcbc260309a4 100644 --- a/etc/doxygen/pages/armarpose.dox +++ b/etc/doxygen/pages/armarpose.dox @@ -27,14 +27,14 @@ The coordinate frame is usually the name of the RobotNode, e.g. the tcp of the r The agent name can be retrieved via the \ref armarx::RobotStateComponent like this: \code - std::strning agentName = robotStateInterfacePrx->getRobotName(); + std::string agentName = robotStateInterfacePrx->getRobotName(); \endcode So an example code for creating a new FramedPosition looks like this: \code RobotStateComponentInterfacePrx robotStateInterfacePrx = ....; // you need to have this proxy SharedRobotInterfacePrx robot = robotStateInterfacePrx->getSynchronizedRobot(); - std::strning agentName = robotStateInterfacePrx->getRobotName(); + std::string agentName = robotStateInterfacePrx->getRobotName(); std::string frame = robot->getRoot()->getName(); Eigen::Vector3f pos; pos << 100, 0, 0;