Example #1
0
 void g(double ntime) {
   double dt = ntime - time;
   time = ntime;
   for (Box b : bs) {
     b.go(dt);
   }
 }