joint.h.diff 804 B

123456789101112131415161718
  1. 61,70d60
  2. < /******************** breakable joint contribution ***********************/
  3. < struct dxJointBreakInfo : public dBase {
  4. < int flags;
  5. < dReal b1MaxF[3]; // maximum force on body 1
  6. < dReal b1MaxT[3]; // maximum torque on body 1
  7. < dReal b2MaxF[3]; // maximum force on body 2
  8. < dReal b2MaxT[3]; // maximum torque on body 2
  9. < dJointBreakCallback *callback; // function that is called when this joint breaks
  10. < };
  11. < /*************************************************************************/
  12. 135,140d124
  13. <
  14. < /******************** breakable joint contribution ***********************/
  15. < // optional break info structure. if this is not NULL the the joint is
  16. < // breakable.
  17. < dxJointBreakInfo *breakInfo;
  18. < /*************************************************************************/