/** * Test file for the movement of a ball. **/ #include "Ball.hpp" #include #include #include "FlatGround.hpp" using namespace std; int main() { int i; Point center(0,10,0); FlatGround* flat = new FlatGround(); Ball ball(center,flat, 0, 0.25, 0, 1, 1); for(i=0; i< 10000; i++) { ball.update_pos(0.001); cout << ball << "\n"; } }