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.
Fork of Robot2016_2-0 by
Map/Objectif/objectif.h
- Committer:
- IceTeam
- Date:
- 2016-05-04
- Revision:
- 56:4fd9636dfb36
- Child:
- 57:86f491f5b25d
File content as of revision 56:4fd9636dfb36:
#ifndef OBJECTIF_H
#define OBJECTIF_H
class Objectif {
public:
Objectif (int type, float x_obj, float y_obj, float y_objectif);
private:
int type;
float x_objectif, y_objectif, thet_object;
};
#endif
