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