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: ELEC2645_JoystickLCD_LPC1768_2021
Diff: lib/Ball.h
- Revision:
- 8:1fc5e14b0db6
- Parent:
- 7:559edc36f261
- Child:
- 9:6f060f495536
diff -r 559edc36f261 -r 1fc5e14b0db6 lib/Ball.h
--- a/lib/Ball.h Thu Apr 22 16:33:42 2021 +0000
+++ b/lib/Ball.h Sat Apr 24 21:31:19 2021 +0000
@@ -5,6 +5,7 @@
#include "Utils.h"
#include "N5110.h"
#include "Vector.h"
+#include "N5110.h"
class Ball
{
@@ -12,11 +13,8 @@
Ball();
void init();
- std::vector<Vector2Df> set_path;
- void draw(N5110 &lcd, Vector2Df path_points, int type);
-
-private:
+// std::vector<Vector2Df> get_path;
+ void draw(N5110 &lcd, std::vector<Vector2Df> path_points, int radius, float iterator);
- int _direction;
};
#endif