From ebf3f7a267e06f8a71ee15cdd7490253c87d8591 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Oudin?= Date: Tue, 13 Feb 2018 12:47:55 +0100 Subject: [PATCH] Remove debug lines --- Ball.cpp | 5 ----- spheroid.cpp | 1 - 2 files changed, 6 deletions(-) diff --git a/Ball.cpp b/Ball.cpp index aa478cf..0103ceb 100644 --- a/Ball.cpp +++ b/Ball.cpp @@ -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); } diff --git a/spheroid.cpp b/spheroid.cpp index bd2c9b2..2b31266 100644 --- a/spheroid.cpp +++ b/spheroid.cpp @@ -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'; } }