| 731 | |
| 732 | template <class T> |
| 733 | static bool |
| 734 | lessThanEqual33(Matrix33<T> &mat1, const Matrix33<T> &mat2) |
| 735 | { |
| 736 | for(int i = 0; i < 3; ++i){ |
| 737 | for(int j = 0; j < 3; ++j){ |
| 738 | if(mat1[i][j] > mat2[i][j]){ |
| 739 | return false; |
| 740 | } |
| 741 | } |
| 742 | } |
| 743 | |
| 744 | return true; |
| 745 | } |
| 746 | |
| 747 | template <class T> |
| 748 | static bool |
nothing calls this directly
no outgoing calls
no test coverage detected