| 774 | |
| 775 | template <class T> |
| 776 | static Matrix44<T> |
| 777 | add44T(Matrix44<T> &mat, T a) |
| 778 | { |
| 779 | MATH_EXC_ON; |
| 780 | Matrix44<T> m(mat.x); |
| 781 | for(int i = 0; i < 4; ++i) |
| 782 | for(int j = 0; j < 4; ++j) |
| 783 | m.x[i][j] += a; |
| 784 | |
| 785 | return m; |
| 786 | } |
| 787 | |
| 788 | template <class S, class T> |
| 789 | static Matrix44<T> |
nothing calls this directly
no outgoing calls
no test coverage detected