Browse Source

*** empty log message ***

Darren Ranalli 25 years ago
parent
commit
22fc57ba0a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/physics/linearEulerIntegrator.cxx

+ 1 - 1
panda/src/physics/linearEulerIntegrator.cxx

@@ -147,7 +147,7 @@ child_integrate(Physical *physical,
     float len = vel_vec.length();
     float len = vel_vec.length();
 
 
     if (len > current_object->get_terminal_velocity()) {
     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;
       vel_vec *= current_object->get_terminal_velocity() / len;
     }
     }