Better number of iterations

This commit is contained in:
Rémi Oudin 2018-02-12 10:50:45 +01:00
parent 61933b9b78
commit 1e059742f4

View file

@ -12,8 +12,8 @@ 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);
for(i=0; i< 10000; i++) {
ball.update_pos(0.001);
cout << ball << "\n";
}
}