Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
shared/DamyMovement/DamyMovement.h
- Committer:
- e2011220
- Date:
- 2021-04-14
- Revision:
- 0:ee7e9405e1c7
File content as of revision 0:ee7e9405e1c7:
#ifndef DAMY_MOVEMENT_H_
#define DAMY_MOVEMENT_H_
#include <shared/Movement/Movement.h>
class DamyMovement : public Movement
{
public:
virtual ~DamyMovement(){}
virtual void move(double x, double y, double yaw)
{
Eigen::Vector3d speed_move;
speed_move << x, y, yaw;
_speed_move = speed_move;
}
Eigen::Vector3d get_speed_move()
{
return _speed_move;
}
private:
Eigen::Vector3d _speed_move;
};
#endif