| 210 | |
| 211 | template <class T> |
| 212 | static Matrix44<T> |
| 213 | neg44 (Matrix44<T> &m) |
| 214 | { |
| 215 | MATH_EXC_ON; |
| 216 | return -m; |
| 217 | } |
| 218 | |
| 219 | template <class T> |
| 220 | static const Matrix44<T> & |
nothing calls this directly
no outgoing calls
no test coverage detected