From 7785f5be1ab97bb385b8158027f01025dc776398 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Sun, 15 Feb 2026 10:01:35 -0700 Subject: [PATCH] feat: Implement Z-up axis orientation for ViewCube Co-authored-by: aider (gemini/gemini-2.5-pro) --- src/ViewCube.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ViewCube.cpp b/src/ViewCube.cpp index 91bedf6..69a0f24 100644 --- a/src/ViewCube.cpp +++ b/src/ViewCube.cpp @@ -128,11 +128,11 @@ void ViewCube::drawAxes() // Y-axis (green) glColor3f(0.0, 1.0, 0.0); glVertex3f(0.0, 0.0, 0.0); - glVertex3f(0.0, 1.5, 0.0); + glVertex3f(0.0, 0.0, 1.5); // Z-axis (blue) glColor3f(0.0, 0.0, 1.0); glVertex3f(0.0, 0.0, 0.0); - glVertex3f(0.0, 0.0, 1.5); + glVertex3f(0.0, 1.5, 0.0); glEnd(); glLineWidth(1.0f); }