| 897 | } |
| 898 | |
| 899 | void Matrix3x4::SetMatrix(const Matrix& m) |
| 900 | { |
| 901 | const float* src = m.Raw; |
| 902 | float* dst = Raw; |
| 903 | dst[0] = src[0]; |
| 904 | dst[1] = src[1]; |
| 905 | dst[2] = src[2]; |
| 906 | dst[3] = src[3]; |
| 907 | dst[4] = src[4]; |
| 908 | dst[5] = src[5]; |
| 909 | dst[6] = src[6]; |
| 910 | dst[7] = src[7]; |
| 911 | dst[8] = src[8]; |
| 912 | dst[9] = src[9]; |
| 913 | dst[10] = src[10]; |
| 914 | dst[11] = src[11]; |
| 915 | } |
| 916 | |
| 917 | void Matrix3x4::SetMatrixTranspose(const Matrix& m) |
| 918 | { |
no outgoing calls
no test coverage detected