| 247 | |
| 248 | template <class T> |
| 249 | static Matrix33<T> |
| 250 | div33T(Matrix33<T> &m, const T &t) |
| 251 | { |
| 252 | MATH_EXC_ON; |
| 253 | return m / t; |
| 254 | } |
| 255 | |
| 256 | template <class T> |
| 257 | static void |
nothing calls this directly
no outgoing calls
no test coverage detected