Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.41 KB | None | 0 0
  1.         //TODO: fix conditional compilation
  2.  
  3. //      if (tool_cut) {
  4. //          tool_cut->update_tool(time->get_dt());
  5. //          contact_apply_tool_to_body_2d(tool_cut, bodies[0], reaprox_forces, limit_friction);
  6. //          contact_apply_tool_to_body_muller_modified(tool_cut, bodies[0], smooth_fac);
  7. //      }
  8.  
  9.         if (tool_cut_3d) {
  10.             tool_cut_3d->update_tool(time->get_dt());
  11.             contact_apply_tool_to_body_3d(tool_cut_3d, bodies[0]);
  12.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement