| 2106 | } |
| 2107 | |
| 2108 | RTC_API void rtcSetGeometryIntersectFunction (RTCGeometry hgeometry, RTCIntersectFunctionN intersect) |
| 2109 | { |
| 2110 | Geometry* geometry = (Geometry*) hgeometry; |
| 2111 | RTC_CATCH_BEGIN; |
| 2112 | RTC_TRACE(rtcSetGeometryIntersectFunction); |
| 2113 | RTC_VERIFY_HANDLE(hgeometry); |
| 2114 | geometry->setIntersectFunctionN(intersect); |
| 2115 | RTC_CATCH_END2(geometry); |
| 2116 | } |
| 2117 | |
| 2118 | RTC_API void rtcSetGeometryPointQueryFunction(RTCGeometry hgeometry, RTCPointQueryFunction pointQuery) |
| 2119 | { |
no test coverage detected