From 63349832e0c64254fa1ac9fa77179558f93a8aed Mon Sep 17 00:00:00 2001 From: AIR Date: Wed, 14 Sep 2022 17:12:25 +0200 Subject: [PATCH 1/2] Remove Z axis scaling --- AITracker/src/PositionSolver.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/AITracker/src/PositionSolver.cpp b/AITracker/src/PositionSolver.cpp index 574fe2b..88cb75c 100644 --- a/AITracker/src/PositionSolver.cpp +++ b/AITracker/src/PositionSolver.cpp @@ -326,9 +326,6 @@ void PositionSolver::correct_rotation(FaceData& face_data) // Note: We could saturate pitch here, but its better to let the user do it via Opentrack. // The coefficient could be problematic for some users. //face_data.rotation[0] = face_data.rotation[0] * 1.5; - - // We dont want the Z axis oversaturated since opentrack has +/-600 centimeter range - face_data.translation[2] /= 10; } From 8161c2b0fd7f34a583cce96f1efb95f8348f697a Mon Sep 17 00:00:00 2001 From: AIR Date: Thu, 15 Sep 2022 16:44:43 +0200 Subject: [PATCH 2/2] update version patch --- Client/src/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Client/src/version.h b/Client/src/version.h index e527095..375eb62 100644 --- a/Client/src/version.h +++ b/Client/src/version.h @@ -1,3 +1,3 @@ #pragma once -#define AITRACK_VERSION "v0.7.0-alpha" \ No newline at end of file +#define AITRACK_VERSION "v0.7.1-alpha" \ No newline at end of file