move3d_ros_lib
0.1.0
move3d/ros API interface
|
#include <base_human_updater.h>
Public Member Functions | |
virtual bool | update (Robot *h, const Eigen::Affine3d &base, const std::map< std::string, Eigen::Affine3d > &joints, const HumanSettings &settings)=0 |
update the robot with the given elements More... | |
virtual bool | computeConf (Robot *h, const Eigen::Affine3d &base, const std::map< std::string, Eigen::Affine3d > &joints, const HumanSettings &settings, RobotState &q)=0 |
compute the configuration without updating the human in move3d More... | |
Base class for implementing plugin human updater.
BaseHumanUpdater provides the interface for plugin classes that handle the translation of some specific human description to move3d
|
pure virtual |
compute the configuration without updating the human in move3d
[in] | h | Robot object representing the human in move3d |
[in] | base | base position |
[in] | joints | joint positions |
[in] | settings | settings for that human |
[out] | q | the computed configuration |
Implemented in move3d::HeadHandUpdater, and move3d::SingleJoint2dUpdater.
|
pure virtual |
update the robot with the given elements
h | the Robot object representing the human in move3d |
base | the base position |
joints | the joint positions |
settings | settings for that human |
Implemented in move3d::HeadHandUpdater, and move3d::SingleJoint2dUpdater.