| 2086 | } |
| 2087 | |
| 2088 | RTC_API void rtcSetGeometryBoundsFunction (RTCGeometry hgeometry, RTCBoundsFunction bounds, void* userPtr) |
| 2089 | { |
| 2090 | Geometry* geometry = (Geometry*) hgeometry; |
| 2091 | RTC_CATCH_BEGIN; |
| 2092 | RTC_TRACE(rtcSetGeometryBoundsFunction); |
| 2093 | RTC_VERIFY_HANDLE(hgeometry); |
| 2094 | geometry->setBoundsFunction(bounds,userPtr); |
| 2095 | RTC_CATCH_END2(geometry); |
| 2096 | } |
| 2097 | |
| 2098 | RTC_API void rtcSetGeometryDisplacementFunction (RTCGeometry hgeometry, RTCDisplacementFunctionN displacement) |
| 2099 | { |
no test coverage detected