ARES / Mbed 2 deprecated Robot 2016

Dependencies:   mbed

Map/Objectifs/Objectif.cpp

Committer:
Jagang
Date:
2015-05-24
Revision:
0:b127c787a51b

File content as of revision 0:b127c787a51b:

#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;
}