| 2216 | } |
| 2217 | |
| 2218 | RTC_API void rtcInterpolate(const RTCInterpolateArguments* const args) |
| 2219 | { |
| 2220 | Geometry* geometry = (Geometry*) args->geometry; |
| 2221 | RTC_CATCH_BEGIN; |
| 2222 | RTC_TRACE(rtcInterpolate); |
| 2223 | #if defined(DEBUG) |
| 2224 | RTC_VERIFY_HANDLE(args->geometry); |
| 2225 | #endif |
| 2226 | geometry->interpolate(args); |
| 2227 | RTC_CATCH_END2(geometry); |
| 2228 | } |
| 2229 | |
| 2230 | RTC_API void rtcInterpolateN(const RTCInterpolateNArguments* const args) |
| 2231 | { |
no test coverage detected