* @brief Checks if the generator node holding this capability can change its output to appear * as if the sensor was placed at the viewpoint of another specific @ref xn::ProductionNode * "production node". * * @param [in] otherNode Other production node, whose viewpoint against which this * node's viewpoint is being checked. * * Remarks * * This is not the
| 3120 | * the viewpoints of nodes of some specific sensors and not of other specific sensors. |
| 3121 | */ |
| 3122 | inline XnBool IsViewPointSupported(ProductionNode& otherNode) const |
| 3123 | { |
| 3124 | return xnIsViewPointSupported(GetHandle(), otherNode.GetHandle()); |
| 3125 | } |
| 3126 | |
| 3127 | /** |
| 3128 | * @brief Sets the current viewpoint of the holding generator node to look as if it |
no test coverage detected