From a95d6a28c944de176dfa42136c4fe96b616e3dbf Mon Sep 17 00:00:00 2001 From: Oliver Bock <oliver.bock@aei.mpg.de> Date: Tue, 12 Sep 2017 10:45:22 +0200 Subject: [PATCH] Doubled IFO thickness/length and sutarated their colors --- src/pulsaranimationwidget.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/pulsaranimationwidget.cpp b/src/pulsaranimationwidget.cpp index 864e25b..9a9914f 100644 --- a/src/pulsaranimationwidget.cpp +++ b/src/pulsaranimationwidget.cpp @@ -265,7 +265,7 @@ void PulsarAnimationWidget::paintGL() glPushMatrix(); { glRotatef(90, 0.0, 1.0, 0.0); - gluCylinder(m_quadricLHOh, 0.010, 0.010, 0.20, 32, 1); + gluCylinder(m_quadricLHOh, 0.020, 0.020, 0.40, 32, 1); } glPopMatrix(); @@ -273,8 +273,8 @@ void PulsarAnimationWidget::paintGL() { glRotatef(90, 0.0, 1.0, 0.0); glRotatef(90, 1.0, 0.0, 0.0); - glColor3f(0.5f, 0.5f, 1.0f); - gluCylinder(m_quadricLHOv, 0.010, 0.010, 0.20, 32, 1); + glColor3f(0.0f, 0.0f, 1.0f); + gluCylinder(m_quadricLHOv, 0.020, 0.020, 0.40, 32, 1); } glPopMatrix(); } @@ -293,7 +293,7 @@ void PulsarAnimationWidget::paintGL() glPushMatrix(); { glRotatef(90, 0.0, 1.0, 0.0); - gluCylinder(m_quadricLLOh, 0.010, 0.010, 0.20, 32, 1); + gluCylinder(m_quadricLLOh, 0.020, 0.020, 0.40, 32, 1); } glPopMatrix(); @@ -301,8 +301,8 @@ void PulsarAnimationWidget::paintGL() { glRotatef(90, 0.0, 1.0, 0.0); glRotatef(90, 1.0, 0.0, 0.0); - glColor3f(1.0f, 0.5f, 0.5f); - gluCylinder(m_quadricLLOv, 0.010, 0.010, 0.20, 32, 1); + glColor3f(1.0f, 0.0f, 0.0f); + gluCylinder(m_quadricLLOv, 0.020, 0.020, 0.40, 32, 1); } glPopMatrix(); } @@ -320,7 +320,7 @@ void PulsarAnimationWidget::paintGL() glPushMatrix(); { glRotatef(90, 0.0, 1.0, 0.0); - gluCylinder(m_quadricVirgoh, 0.010, 0.010, 0.20, 32, 1); + gluCylinder(m_quadricVirgoh, 0.020, 0.020, 0.40, 32, 1); } glPopMatrix(); @@ -328,8 +328,8 @@ void PulsarAnimationWidget::paintGL() { glRotatef(90, 0.0, 1.0, 0.0); glRotatef(90, 1.0, 0.0, 0.0); - glColor3f(0.5f, 1.0f, 0.5f); - gluCylinder(m_quadricVirgov, 0.010, 0.010, 0.20, 32, 1); + glColor3f(0.0f, 1.0f, 0.0f); + gluCylinder(m_quadricVirgov, 0.020, 0.020, 0.40, 32, 1); } glPopMatrix(); } -- GitLab