Return the type of a joint
| 184 | |
| 185 | // Return the type of a joint |
| 186 | RP3D_FORCE_INLINE JointType JointComponents::getType(Entity jointEntity) const { |
| 187 | assert(mMapEntityToComponentIndex.containsKey(jointEntity)); |
| 188 | return mTypes[mMapEntityToComponentIndex[jointEntity]]; |
| 189 | } |
| 190 | |
| 191 | // Return the position correction technique of a joint |
| 192 | RP3D_FORCE_INLINE JointsPositionCorrectionTechnique JointComponents::getPositionCorrectionTechnique(Entity jointEntity) const { |
nothing calls this directly
no test coverage detected