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
Utils.cpp
- Committer:
- SolalNathan
- Date:
- 2019-06-07
- Revision:
- 18:daba0b3777c0
File content as of revision 18:daba0b3777c0:
#include "SaphTeamRacing.h" float distance(float x_1, float x_2, float y_1, float y_2) { /* Fonction qui renvoie la distance entre deux points en norme 2. */ float norm2; norm2 = sqrt((x_1 - x_2)*(x_1 - x_2) + (y_1 - y_2)*(y_1 - y_2)); return norm2; }