Alex exoskeleton
ALEX SoftwareDocumentation
TrajectoryGenerator.h
Go to the documentation of this file.
1 
13 #ifndef TRAJECTORYGENERATOR_H_INCLUDED
14 #define TRAJECTORYGENERATOR_H_INCLUDED
15 
16 #include <vector>
17 
23  public:
25 
33  virtual bool initialiseTrajectory() = 0;
34 
41  virtual std::vector<double> getSetPoint(double time) = 0;
42 };
43 
44 #endif
virtual std::vector< double > getSetPoint(double time)=0
Get the next step point in the trajectory.
virtual bool initialiseTrajectory()=0
Pure Virtual Function which must be configured to configure the trajectory generator with the appropr...
Abstract class which is used to generate trajectorys for a Robot to follow.