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

