AUV-Coop-Assembly
Master Thesis for Robotics Engineering. Cooperative peg-in-hole assembly with two underwater vehicles guided by vision
manipulabilityTask.h
1 #ifndef MANIPULABILITYTASK_H
2 #define MANIPULABILITYTASK_H
3 
4 #include <Eigen/Core>
5 #include "task.h"
6 
7 class ManipulabilityTask : public Task
8 {
9 public:
10  ManipulabilityTask(int dimension, bool eqType, std::string robotName);
11  //~ManipulabilityTask();
12  int updateMatrices(struct Infos* const robInfo);
13 private:
14  void setActivation();
15  int setJacobian();
16  void setReference();
17  double mu; //manipulability value
18 };
19 
20 #endif // MANIPULABILITYTASK_H
Definition: infos.h:117
ABSTRACT class task. Each task is a derived class of this class. It contains all the variable that th...
Definition: task.h:17