| 282 | |
| 283 | template <class T> |
| 284 | static int |
| 285 | extractSHRT44(Matrix44<T> &mat, Vec3<T> &s, Vec3<T> &h, Vec3<T> &r, Vec3<T> &t, int exc = 1) |
| 286 | { |
| 287 | MATH_EXC_ON; |
| 288 | return IMATH_NAMESPACE::extractSHRT(mat, s, h, r, t, exc); |
| 289 | } |
| 290 | |
| 291 | template <class T> |
| 292 | static void |
nothing calls this directly
no test coverage detected