| 290 | |
| 291 | template <class T> |
| 292 | static void |
| 293 | extractScaling44(Matrix44<T> &mat, Vec3<T> &dst, int exc = 1) |
| 294 | { |
| 295 | MATH_EXC_ON; |
| 296 | IMATH_NAMESPACE::extractScaling(mat, dst, exc); |
| 297 | } |
| 298 | |
| 299 | template <class T> |
| 300 | static void |
nothing calls this directly
no test coverage detected