| 210 | } |
| 211 | |
| 212 | XnStatus xnConfigureUserPosition(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 213 | { |
| 214 | XnStatus nRetVal = XN_STATUS_OK; |
| 215 | |
| 216 | XnInt nIndex; |
| 217 | XnBoundingBox3D UserPosition; |
| 218 | nRetVal = xnXmlReadUserPosition(pOpcode, &nIndex, &UserPosition); |
| 219 | XN_IS_STATUS_OK(nRetVal); |
| 220 | |
| 221 | nRetVal = xnSetUserPosition(hNode, nIndex, &UserPosition); |
| 222 | XN_IS_STATUS_OK(nRetVal); |
| 223 | |
| 224 | return (XN_STATUS_OK); |
| 225 | } |
| 226 | |
| 227 | XnStatus xnConfigureProperty(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 228 | { |
no test coverage detected