| 673 | |
| 674 | template <class T> |
| 675 | static Matrix33<T> |
| 676 | add33T(Matrix33<T> &mat, T a) |
| 677 | { |
| 678 | MATH_EXC_ON; |
| 679 | Matrix33<T> m(mat.x); |
| 680 | for(int i = 0; i < 3; ++i) |
| 681 | for(int j = 0; j < 3; ++j) |
| 682 | m.x[i][j] += a; |
| 683 | |
| 684 | return m; |
| 685 | } |
| 686 | |
| 687 | template <class S, class T> |
| 688 | static Matrix33<T> |
nothing calls this directly
no outgoing calls
no test coverage detected