| 205 | |
| 206 | template <class T> |
| 207 | static Matrix22<T> |
| 208 | mul22T(Matrix22<T> &m, const T &t) |
| 209 | { |
| 210 | MATH_EXC_ON; |
| 211 | return m * t; |
| 212 | } |
| 213 | |
| 214 | template <class T> |
| 215 | static Matrix22<T> |
nothing calls this directly
no outgoing calls
no test coverage detected