From 53e54855ac58e9e923093f5e51a970c68ff0a0a5 Mon Sep 17 00:00:00 2001 From: Julius Nehring-Wirxel <julius.nehring-wirxel@rwth-aachen.de> Date: Thu, 13 Mar 2025 13:49:54 +0100 Subject: [PATCH] Trying again... --- viewer/glow-extras/viewer/configure.hh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/viewer/glow-extras/viewer/configure.hh b/viewer/glow-extras/viewer/configure.hh index fe7a0be..a76ece6 100644 --- a/viewer/glow-extras/viewer/configure.hh +++ b/viewer/glow-extras/viewer/configure.hh @@ -99,13 +99,13 @@ struct orthogonal_projection constexpr explicit orthogonal_projection(float left, float right, float bottom, float top, float near, float far) { - bounds.min.x = left; - bounds.min.y = bottom; - bounds.min.z = near; + this->bounds.min.x = left; + this->bounds.min.y = bottom; + this->bounds.min.z = near; - bounds.max.x = right; - bounds.max.y = top; - bounds.max.z = far; + this->bounds.max.x = right; + this->bounds.max.y = top; + this->bounds.max.z = far; } constexpr explicit orthogonal_projection(tg::aabb3 const& bounds) : bounds(bounds) {} -- GitLab