| 865 | |
| 866 | |
| 867 | double* Matrix4dFromMatrix( double* result, const Matrix& mat ) |
| 868 | { |
| 869 | for( int r = 0; r < 4; r++ ) |
| 870 | { |
| 871 | for( int c = 0; c < 4; c++ ) |
| 872 | { |
| 873 | result[r * 4 + c] = mat.m[r][c]; |
| 874 | } |
| 875 | } |
| 876 | return result; |
| 877 | } |
| 878 | |
| 879 | |
| 880 |
no outgoing calls
no test coverage detected