From b25a2f4d3a0745b39c05a8ead4e67fef345b23e9 Mon Sep 17 00:00:00 2001 From: Adrian Date: Fri, 1 May 2020 17:23:15 -0400 Subject: [PATCH] Change Std Bottom orientation (x ->right; y ->down) Camera::rotation(Camera::Bottom) was upside-down compared to industry standards and other FreeCAD bottom views --- src/Gui/View3DPy.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/View3DPy.cpp b/src/Gui/View3DPy.cpp index bc73deca01..c42ae316cd 100644 --- a/src/Gui/View3DPy.cpp +++ b/src/Gui/View3DPy.cpp @@ -413,7 +413,7 @@ SbRotation Camera::rotation(Camera::Orientation view) case Top: return SbRotation(0, 0, 0, 1); case Bottom: - return SbRotation(0, 1, 0, 0); + return SbRotation(1, 0, 0, 0); case Front: { float root = (float)(sqrt(2.0)/2.0); return SbRotation(root, 0, 0, root);