| 276 | |
| 277 | template <class T> |
| 278 | static int |
| 279 | extractSHRT33(Matrix33<T> &mat, Vec2<T> &s, Vec2<T> &h, Vec2<T> &r, Vec2<T> &t, int exc = 1) |
| 280 | { |
| 281 | MATH_EXC_ON; |
| 282 | T hTmp, rTmp; |
| 283 | |
| 284 | int b = IMATH_NAMESPACE::extractSHRT(mat, s, hTmp, rTmp, t, exc); |
| 285 | |
| 286 | h.setValue(hTmp, T (0)); |
| 287 | r.setValue(rTmp, T (0)); |
| 288 | |
| 289 | return b; |
| 290 | } |
| 291 | |
| 292 | template <class T> |
| 293 | static void |
nothing calls this directly
no test coverage detected