Remove debug lines
This commit is contained in:
parent
f4b1299d3e
commit
ebf3f7a267
2 changed files with 0 additions and 6 deletions
5
Ball.cpp
5
Ball.cpp
|
@ -87,11 +87,6 @@ void Ball::update_pos(double dt) {
|
||||||
stop_bouncing = crt_time;
|
stop_bouncing = crt_time;
|
||||||
bouncing = false;
|
bouncing = false;
|
||||||
}
|
}
|
||||||
std::cout << "New bounce :";
|
|
||||||
std::cout << "U:" << U << ":";
|
|
||||||
std::cout << "A:" << A << ":";
|
|
||||||
std::cout << "B:" << B << ":";
|
|
||||||
std::cout << "T:" << T << "\n";
|
|
||||||
}
|
}
|
||||||
_compute_pos(dt);
|
_compute_pos(dt);
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,6 @@ void Spheroid::check_horizontal_plan_collision(double height) {
|
||||||
if (((center.y - p) <= height) || (p < init_p)) {
|
if (((center.y - p) <= height) || (p < init_p)) {
|
||||||
p = fmin(init_p, center.y-height);
|
p = fmin(init_p, center.y-height);
|
||||||
update_radius();
|
update_radius();
|
||||||
std::cout << "p:" << p << "q:" << q << '\n';
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue