bouncing_ball backend

Fork of bouncing_ball by Stephen Licht

Revision:
4:73a00b0667fc
Parent:
2:ba1844b0eb9f
Child:
5:17aa521aaa2f
--- a/bouncing_ball.h	Tue Nov 07 14:28:53 2017 +0000
+++ b/bouncing_ball.h	Thu Nov 09 14:26:55 2017 +0000
@@ -36,6 +36,7 @@
         void define_space(int desired_width, int desired_height);
         void set_param(int desired_radius, int desired_color);
         void set_state(int desired_x, int desired_y, float desired_vx, float desired_vy);
+        void reset_upside_down();
         
     private:
 
@@ -45,7 +46,7 @@
         float _posx_f;
         float _posy_f;
         
-        void _reset_upside_down();
+
 };
 
 #endif  //bouncing_ball_H