Skip to content

Commit

Permalink
Updated drawFilledCircleDetailled(). Refs #13894
Browse files Browse the repository at this point in the history
  • Loading branch information
palvarezlopez committed Dec 19, 2023
1 parent afe1965 commit 5866b6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/gui/div/GLHelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -529,10 +529,10 @@ GLHelper::drawFilledCircleDetailled(const GUIVisualizationSettings::DetailLevel
// draw only a square
GLHelper::pushMatrix();
glBegin(GL_QUADS);
glVertex2d(-radius, 0);
glVertex2d(-radius, radius);
glVertex2d(-radius, -radius);
glVertex2d(radius, -radius);
glVertex2d(radius, 0);
glVertex2d(radius, radius);
glEnd();
GLHelper::popMatrix();
#ifdef CHECK_ELEMENTCOUNTER
Expand Down

0 comments on commit 5866b6f

Please sign in to comment.