| 971 | |
| 972 | |
| 973 | dxJoint * dJointCreateContact (dWorldID w, dJointGroupID group, |
| 974 | const dContact *c) |
| 975 | { |
| 976 | dAASSERT (c); |
| 977 | dxJointContact *j = (dxJointContact *) |
| 978 | createJoint (w,group,&__dcontact_vtable); |
| 979 | j->contact = *c; |
| 980 | return j; |
| 981 | } |
| 982 | dxJoint * dJointCreateContactSpecial (dWorldID w, dJointGroupID group, |
| 983 | const dContact *c) |
| 984 | { |
no test coverage detected