| 2116 | } |
| 2117 | |
| 2118 | RTC_API void rtcSetGeometryPointQueryFunction(RTCGeometry hgeometry, RTCPointQueryFunction pointQuery) |
| 2119 | { |
| 2120 | Geometry* geometry = (Geometry*) hgeometry; |
| 2121 | RTC_CATCH_BEGIN; |
| 2122 | RTC_TRACE(rtcSetGeometryPointQueryFunction); |
| 2123 | RTC_VERIFY_HANDLE(hgeometry); |
| 2124 | geometry->setPointQueryFunction(pointQuery); |
| 2125 | RTC_CATCH_END2(geometry); |
| 2126 | } |
| 2127 | |
| 2128 | RTC_API unsigned int rtcGetGeometryFirstHalfEdge(RTCGeometry hgeometry, unsigned int faceID) |
| 2129 | { |
no test coverage detected