| 152 | } |
| 153 | |
| 154 | static void move_right(xVec3& vec, F32 scale) |
| 155 | { |
| 156 | xMat4x3& camMat = globals.camera.mat; |
| 157 | |
| 158 | xVec3 localCoords; |
| 159 | xMat4x3Tolocal(&localCoords, &camMat, &vec); |
| 160 | |
| 161 | vec += camMat.right * scale * localCoords.z * (4.0f / 3.0f); |
| 162 | } |
| 163 | |
| 164 | static void update_max_out_time(const xSurface& surface) |
| 165 | { |
no test coverage detected