| 237 | |
| 238 | template <class T> |
| 239 | void |
| 240 | outerProduct22(Matrix22<T> &mat, const Vec2<T> &a, const Vec2<T> &b) |
| 241 | { |
| 242 | MATH_EXC_ON; |
| 243 | mat = IMATH_NAMESPACE::outerProduct(a,b); |
| 244 | } |
| 245 | |
| 246 | template <class TV,class TM> |
| 247 | static void |
nothing calls this directly
no test coverage detected