| 299 | |
| 300 | template <class T> |
| 301 | void |
| 302 | outerProduct33(Matrix33<T> &mat, const Vec3<T> &a, const Vec3<T> &b) |
| 303 | { |
| 304 | MATH_EXC_ON; |
| 305 | mat = IMATH_NAMESPACE::outerProduct(a,b); |
| 306 | } |
| 307 | |
| 308 | template <class T> |
| 309 | static void |
nothing calls this directly
no test coverage detected