summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/engine/bars3drenderer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/datavisualization/engine/bars3drenderer.cpp')
-rw-r--r--src/datavisualization/engine/bars3drenderer.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/datavisualization/engine/bars3drenderer.cpp b/src/datavisualization/engine/bars3drenderer.cpp
index 72e224a5..d5c9ddc5 100644
--- a/src/datavisualization/engine/bars3drenderer.cpp
+++ b/src/datavisualization/engine/bars3drenderer.cpp
@@ -1045,8 +1045,10 @@ void Bars3DRenderer::drawScene(GLuint defaultFboHandle)
itModelMatrix.scale(QVector3D(m_rowWidth / m_scaleFactor, gridLineWidth,
gridLineWidth));
// If we're viewing from below, grid line object must be flipped
- if (m_yFlipped)
+ if (m_yFlipped) {
modelMatrix.rotate(180.0f, 1.0, 0.0, 0.0);
+ itModelMatrix.rotate(180.0f, 1.0, 0.0, 0.0);
+ }
MVPMatrix = projectionMatrix * viewMatrix * modelMatrix;
depthMVPMatrix = depthProjectionMatrix * depthViewMatrix * modelMatrix;
@@ -1094,8 +1096,10 @@ void Bars3DRenderer::drawScene(GLuint defaultFboHandle)
m_columnDepth / m_scaleFactor));
// If we're viewing from below, grid line object must be flipped
- if (m_yFlipped)
+ if (m_yFlipped) {
modelMatrix.rotate(180.0f, 1.0, 0.0, 0.0);
+ itModelMatrix.rotate(180.0f, 1.0, 0.0, 0.0);
+ }
MVPMatrix = projectionMatrix * viewMatrix * modelMatrix;
depthMVPMatrix = depthProjectionMatrix * depthViewMatrix * modelMatrix;