This commit is contained in:
Alexey Karnachev 2023-12-30 16:46:47 +04:00
parent 4901d375ac
commit 9e6cd245e3
2 changed files with 5 additions and 4 deletions

View File

@ -25,7 +25,8 @@
#define CAMERA_ZOOM_SPEED 1.0f
// Updates the camera in the orbital-style, i.e camera rotates around the look-at point by the orbit
static void updateCamera(Camera3D* camera) {
static void updateCamera(Camera3D* camera)
{
bool isMMBDown = IsMouseButtonDown(2);
bool isShiftDown = IsKeyDown(KEY_LEFT_SHIFT);
Vector2 mouseDelta = GetMouseDelta();

View File

@ -308,7 +308,7 @@ static RayCollision getRayPlaneCollision(
return collision;
}
static Handles getSortedHandled(Handle h0, Handle h1, Handle h2) {
static Handles getSortedHandles(Handle h0, Handle h1, Handle h2) {
if (h0.distToCamera < h1.distToCamera) SWAP(h0, h1);
if (h1.distToCamera < h2.distToCamera) SWAP(h1, h2);
if (h0.distToCamera < h1.distToCamera) SWAP(h0, h1);
@ -346,7 +346,7 @@ static void drawAxisHandles(
Handle hy = {py, Y_AXIS, colorY, Vector3DistanceSqr(py, camera.position)};
Handle hz = {pz, Z_AXIS, colorZ, Vector3DistanceSqr(pz, camera.position)};
Handles handles = getSortedHandled(hx, hy, hz);
Handles handles = getSortedHandles(hx, hy, hz);
for (int i = 0; i < 3; ++i) {
Handle* h = &handles.arr[i];
@ -377,7 +377,7 @@ static void drawPlaneHandles(
Handle hy = {py, Y_AXIS, colorY, Vector3DistanceSqr(py, camera.position)};
Handle hz = {pz, X_AXIS, colorZ, Vector3DistanceSqr(pz, camera.position)};
Handles handles = getSortedHandled(hx, hy, hz);
Handles handles = getSortedHandles(hx, hy, hz);
rlDisableBackfaceCulling();
for (int i = 0; i < 3; ++i) {