| 980 | return j; |
| 981 | } |
| 982 | dxJoint * dJointCreateContactSpecial (dWorldID w, dJointGroupID group, |
| 983 | const dContact *c) |
| 984 | { |
| 985 | dAASSERT (c); |
| 986 | dxJointContact *j = (dxJointContact *) |
| 987 | createJoint (w,group,&__dcontact_special_vtable); |
| 988 | j->contact = *c; |
| 989 | return j; |
| 990 | } |
| 991 | dxJoint * dJointCreateHinge2 (dWorldID w, dJointGroupID group) |
| 992 | { |
| 993 | //dAASSERT (w); |
no test coverage detected