Better number of iterations
This commit is contained in:
parent
61933b9b78
commit
1e059742f4
1 changed files with 2 additions and 2 deletions
|
@ -12,8 +12,8 @@ int main(int argc, char** argv) {
|
||||||
int i;
|
int i;
|
||||||
Point center(0,0,10);
|
Point center(0,0,10);
|
||||||
Ball ball(center, 0, 1, 1);
|
Ball ball(center, 0, 1, 1);
|
||||||
for(i=0; i< 100; i++) {
|
for(i=0; i< 10000; i++) {
|
||||||
ball.update_pos(0.2);
|
ball.update_pos(0.001);
|
||||||
cout << ball << "\n";
|
cout << ball << "\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue