| 1773 | } |
| 1774 | |
| 1775 | RTC_API void rtcSetGeometryTopologyCount(RTCGeometry hgeometry, unsigned int N) |
| 1776 | { |
| 1777 | Geometry* geometry = (Geometry*) hgeometry; |
| 1778 | RTC_CATCH_BEGIN; |
| 1779 | RTC_TRACE(rtcSetGeometryTopologyCount); |
| 1780 | RTC_VERIFY_HANDLE(hgeometry); |
| 1781 | geometry->setTopologyCount(N); |
| 1782 | RTC_CATCH_END2(geometry); |
| 1783 | } |
| 1784 | |
| 1785 | RTC_API void rtcSetGeometryBuildQuality (RTCGeometry hgeometry, RTCBuildQuality quality) |
| 1786 | { |
no test coverage detected