diff --git a/main_ball.cpp b/main_ball.cpp new file mode 100644 index 0000000..4738b02 --- /dev/null +++ b/main_ball.cpp @@ -0,0 +1,19 @@ +/** + * Test file for the movement of a ball. + **/ + +#include "Ball.hpp" +#include +#include + +using namespace std; + +int main(int argc, char** argv) { + int i; + Point center(0,0,10); + Ball ball(center, 0, 1, 1); + for(i=0; i< 100; i++) { + ball.update_pos(0.2); + cout << ball << "\n"; + } +}