* @brief Returns whether the @ref holder_node "holder node"'s viewpoint is the same * viewpoint as that of another specified node. Thus, this method is somewhat of an equality operator. * * @param [in] otherNode Other node, whose viewpoint is used for comparison with * the viewpoint of this node. */
| 3152 | * the viewpoint of this node. |
| 3153 | */ |
| 3154 | inline XnBool IsViewPointAs(ProductionNode& otherNode) const |
| 3155 | { |
| 3156 | return xnIsViewPointAs(GetHandle(), otherNode.GetHandle()); |
| 3157 | } |
| 3158 | |
| 3159 | /** |
| 3160 | * @brief Registers a handler for the 'Viewpoint Change' event (see the above overview to this class). |
no test coverage detected