move3d_ros_lib  0.1.0
move3d/ros API interface
 All Classes Namespaces Functions Variables Typedefs Pages
single_joint_2d_updater.h
1 #ifndef MOVE3D_SINGLEJOINT2DUPDATER_H
2 #define MOVE3D_SINGLEJOINT2DUPDATER_H
3 
4 #include "move3d_ros_lib/plugins/base_human_updater.h"
5 
6 namespace move3d {
7 
15 {
16 public:
18  virtual ~SingleJoint2dUpdater();
19 
20  virtual bool update(Robot *h, const Eigen::Affine3d &base, const std::map<std::string, Eigen::Affine3d> &joints, const HumanSettings &settings);
21  virtual bool computeConf(Robot *h, const Eigen::Affine3d &base, const std::map<std::string, Eigen::Affine3d> &joints, const HumanSettings &settings, RobotState &q);
22 };
23 
24 } // namespace move3d
25 
26 #endif // MOVE3D_SINGLEJOINT2DUPDATER_H
The SingleJoint2dUpdater class is a plugin class for the HumanMgr. It takes a 2D+rotation position an...
Definition: single_joint_2d_updater.h:14
The HumanSettings struct stores data for each human.
Definition: base_human_updater.h:19
Definition: base_human_updater.h:57
virtual bool update(Robot *h, const Eigen::Affine3d &base, const std::map< std::string, Eigen::Affine3d > &joints, const HumanSettings &settings)
update the robot with the given elements
Definition: single_joint_2d_updater.cpp:26
virtual bool computeConf(Robot *h, const Eigen::Affine3d &base, const std::map< std::string, Eigen::Affine3d > &joints, const HumanSettings &settings, RobotState &q)
compute the configuration without updating the human in move3d
Definition: single_joint_2d_updater.cpp:34