| 743 | } |
| 744 | |
| 745 | XnStatus DepthWatcher::NotifyFieldOfView() |
| 746 | { |
| 747 | XnStatus nRetVal = XN_STATUS_OK; |
| 748 | |
| 749 | XnFieldOfView FOV; |
| 750 | nRetVal = m_depthGenerator.GetFieldOfView(FOV); |
| 751 | XN_IS_STATUS_OK(nRetVal); |
| 752 | |
| 753 | nRetVal = NotifyGeneralPropChanged(XN_PROP_FIELD_OF_VIEW, sizeof(FOV), &FOV); |
| 754 | XN_IS_STATUS_OK(nRetVal); |
| 755 | |
| 756 | return (XN_STATUS_OK); |
| 757 | } |
| 758 | |
| 759 | XnStatus DepthWatcher::NotifyUserPositions() |
| 760 | { |
no test coverage detected