
Time is good
Fork of Robot2016_2-0 by
Map/Objectif/objectif.h
- Committer:
- IceTeam
- Date:
- 2016-05-05
- Revision:
- 64:24e1057a97f7
- Parent:
- 63:176d04975f06
- Child:
- 75:195dd2bb13a3
File content as of revision 64:24e1057a97f7:
#ifndef OBJECTIF_H #define OBJECTIF_H /* Dernier Changement : Romain 0h20 Inclu dans : map.h */ #include "objectif_type.h" #include "../../AX12/AX12.h" #include "../../Odometry/Odometry.h" #include "../../ControlleurPince/ControlleurPince.h" class objectif { public: objectif (int ntype, float nx_obj, float ny_obj, float nthet_obj, Odometry * nCodo, AX12 * np, ControlleurPince * npince, float arr = 0); bool Action (); float getX() { return x_objectif; } float getY() { return y_objectif; } float getThet() { return thet_objectif; } private: bool obj_bloc_action(); bool obj_para_action(); int type; float x_objectif, y_objectif, thet_objectif; float marche_arriere; AX12 * Parasol; ControlleurPince * pince; Odometry * Codo; }; #endif