| 168 | |
| 169 | template <class T> |
| 170 | static Matrix44<T> |
| 171 | add44(Matrix44<T> &m, const Matrix44<T> &m2) |
| 172 | { |
| 173 | MATH_EXC_ON; |
| 174 | return m + m2; |
| 175 | } |
| 176 | |
| 177 | template <class T, class U> |
| 178 | static const Matrix44<T> & |
nothing calls this directly
no outgoing calls
no test coverage detected