Robot's source code

Dependencies:   mbed

Map/Objectifs/Objectif.cpp

Committer:
Jagang
Date:
2015-05-11
Revision:
123:55e5e9acc541
Parent:
117:f8c147141a0c

File content as of revision 123:55e5e9acc541:

#include "Objectif.h"

Objectif::Objectif(float x, float y, float theta)
{
    this->x = x;
    this->y = y;
    this->theta = theta;
    done = false;
    active = true;
    id = -1;
}