wbc
|
Abstract interface for a task in joint space. More...
#include <JointTask.hpp>
Public Member Functions | |
JointTask (const TaskConfig &_config, uint n_robot_joints) | |
virtual | ~JointTask () |
virtual void | setReference (const base::commands::Joints &ref)=0 |
Update the Joint reference input for this task. | |
Public Member Functions inherited from wbc::Task | |
Task () | |
Default constructor. | |
Task (const TaskConfig &_config, uint n_robot_joints) | |
Resizes all members. | |
~Task () | |
void | reset () |
Reset task variables to initial values. | |
virtual void | update (RobotModelPtr robot_model)=0 |
Update Task matrices and vectors. | |
void | checkTimeout () |
Check if the task is in timeout and set the timeout flag accordingly. A task is in timeout if. | |
void | setWeights (const base::VectorXd &weights) |
Set task weights. | |
void | setActivation (const double activation) |
Set task activation. | |
Additional Inherited Members | |
Public Attributes inherited from wbc::Task | |
base::Time | time |
TaskConfig | config |
base::VectorXd | y_ref |
base::VectorXd | y_ref_root |
base::VectorXd | weights |
base::VectorXd | weights_root |
double | activation |
int | timeout |
base::MatrixXd | A |
base::MatrixXd | Aw |
Abstract interface for a task in joint space.
wbc::JointTask::JointTask | ( | const TaskConfig & | _config, |
uint | n_robot_joints ) |
|
virtual |
|
pure virtual |
Update the Joint reference input for this task.
Implemented in wbc::JointAccelerationTask, and wbc::JointVelocityTask.