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.
Fork of fy15raf by
Diff: Asteroids/Asteroid.h
- Revision:
- 6:7b733b2a6cf6
- Parent:
- 5:b230e79d36d6
- Child:
- 8:13cef7cb872e
--- a/Asteroids/Asteroid.h Thu Apr 19 17:46:28 2018 +0000 +++ b/Asteroids/Asteroid.h Fri Apr 20 21:03:05 2018 +0000 @@ -15,10 +15,12 @@ void init(int speed); void draw(N5110 &lcd); void update(); + Vector2D get_pos(); private: Vector2D _velocity; + Vector2D p; int _size; int _x; int _y1;