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); }