| 124 | } |
| 125 | |
| 126 | void D6Joint::setDrive(PxD6Drive::Enum index, const PxD6JointDrive& d) |
| 127 | { |
| 128 | PX_CHECK_AND_RETURN(d.isValid(), "PxD6Joint::setDrive: drive is invalid"); |
| 129 | |
| 130 | data().drive[index] = d; |
| 131 | mRecomputeMotion = true; |
| 132 | markDirty(); |
| 133 | } |
| 134 | |
| 135 | void D6Joint::setDistanceLimit(const PxJointLinearLimit& l) |
| 136 | { |
no test coverage detected