| 36 | } |
| 37 | |
| 38 | Quaternionf PVRMat34ToQuat(float (*mat)[3][4]) { |
| 39 | Matrix3f emat; |
| 40 | for (size_t x = 0; x < 3; x++) |
| 41 | for (size_t y = 0; y < 3; y++) |
| 42 | emat(x, y) = (*mat)[x][y]; |
| 43 | return Quaternionf(emat); |
| 44 | } |
nothing calls this directly
no outgoing calls
no test coverage detected