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
Fork of Robocode by
Diff: source/Positioning.cpp
- Revision:
- 69:1fdcef6a7577
- Parent:
- 68:29c52ea147d5
- Child:
- 70:922cbbfebf02
--- a/source/Positioning.cpp Wed Apr 19 14:00:59 2017 +0000
+++ b/source/Positioning.cpp Thu Apr 20 05:52:22 2017 +0000
@@ -35,7 +35,7 @@
position coord_to_pos(coordinates coord)
{
position pos = {0};
- pos.x = rint(coord.x -0.5f);
+ pos.x = rint(coord.x -0.5f); //round values
pos.y = rint(coord.y -0.5f);
return pos;
}
