Remove debug lines

This commit is contained in:
Rémi Oudin 2018-02-13 12:47:55 +01:00
parent f4b1299d3e
commit ebf3f7a267
2 changed files with 0 additions and 6 deletions

View File

@ -87,11 +87,6 @@ void Ball::update_pos(double dt) {
stop_bouncing = crt_time;
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);
}

View File

@ -35,7 +35,6 @@ void Spheroid::check_horizontal_plan_collision(double height) {
if (((center.y - p) <= height) || (p < init_p)) {
p = fmin(init_p, center.y-height);
update_radius();
std::cout << "p:" << p << "q:" << q << '\n';
}
}