Robot's source code

Dependencies:   mbed

Map/Objectifs/Objectif.cpp

Committer:
Jagang
Date:
2015-05-06
Revision:
117:f8c147141a0c
Parent:
109:53918ba98306

File content as of revision 117:f8c147141a0c:

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