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.
Diff: Ball/Ball.h
- Revision:
- 11:2cf0d4ce8677
- Parent:
- 10:40c77d69e83c
- Child:
- 13:e5a36fbd48ae
--- a/Ball/Ball.h Thu Apr 11 08:08:52 2019 +0000
+++ b/Ball/Ball.h Thu Apr 11 21:01:28 2019 +0000
@@ -29,9 +29,9 @@
void set_radius(int radius);
private:
- _radius;
- _x;
- _y;
+ int _radius;
+ int _x;
+ int _y;
Vector2D _velocity;
Vector2D _accel;
};