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
Diff: Map/map.cpp
- Revision:
- 11:0e6a221ad8a9
- Parent:
- 10:b939edd9b87c
--- a/Map/map.cpp Fri May 10 12:00:30 2019 +0000 +++ b/Map/map.cpp Fri May 10 13:58:51 2019 +0000 @@ -24,6 +24,7 @@ // mutators void Map::set_player_curvature(float _player_curvature) { + // limit the curvature if(_player_curvature < -1.0f) _player_curvature = -1.0f; if(_player_curvature > 1.0f) _player_curvature = 1.0f;