| 250 | |
| 251 | template <class T> |
| 252 | static Matrix44<T> |
| 253 | div44T(Matrix44<T> &m, const T &t) |
| 254 | { |
| 255 | MATH_EXC_ON; |
| 256 | return m / t; |
| 257 | } |
| 258 | |
| 259 | template <class T> |
| 260 | static void |
nothing calls this directly
no outgoing calls
no test coverage detected