| 271 | } |
| 272 | |
| 273 | XnStatus UserTracker::GetUserColor(XnUserID nUserId, XnFloat* userColor) |
| 274 | { |
| 275 | XnUInt32 nColorID = nUserId % s_nColors; // the color for the user |
| 276 | userColor[0]=s_Colors[nColorID][0]; |
| 277 | userColor[1]=s_Colors[nColorID][1]; |
| 278 | userColor[2]=s_Colors[nColorID][2]; |
| 279 | return XN_STATUS_OK; |
| 280 | } |
| 281 | |
| 282 | XnFloat UserTracker::GetExitPoseState(XnUserID nUserId) |
| 283 | { |
no outgoing calls
no test coverage detected