| 226 | |
| 227 | template <class T> |
| 228 | static Matrix44<T> |
| 229 | mul44T(Matrix44<T> &m, const T &t) |
| 230 | { |
| 231 | MATH_EXC_ON; |
| 232 | return m * t; |
| 233 | } |
| 234 | |
| 235 | template <class T> |
| 236 | static Matrix44<T> |
nothing calls this directly
no outgoing calls
no test coverage detected