From 22fc57ba0af4318680e47072e8be03cac8d51144 Mon Sep 17 00:00:00 2001 From: Darren Ranalli Date: Wed, 24 Jan 2001 20:14:48 +0000 Subject: [PATCH] *** empty log message *** --- panda/src/physics/linearEulerIntegrator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/physics/linearEulerIntegrator.cxx b/panda/src/physics/linearEulerIntegrator.cxx index 7c6aeae1d3..6ad3a3d06f 100644 --- a/panda/src/physics/linearEulerIntegrator.cxx +++ b/panda/src/physics/linearEulerIntegrator.cxx @@ -147,7 +147,7 @@ child_integrate(Physical *physical, float len = vel_vec.length(); if (len > current_object->get_terminal_velocity()) { - cout << "Capping terminal velocity at: " << current_object->get_terminal_velocity() << endl; + //cout << "Capping terminal velocity at: " << current_object->get_terminal_velocity() << endl; vel_vec *= current_object->get_terminal_velocity() / len; }