Skip to content
Snippets Groups Projects
Commit 2ed55d0f authored by Oliver Bock's avatar Oliver Bock
Browse files

Shortened source axis and turned it red

parent 660d7a24
Branches
Tags
No related merge requests found
......@@ -329,23 +329,22 @@ void PulsarAnimationWidget::paintGL()
// draw spin axis
if(m_showRotationAxes) {
glPolygonMode(GL_FRONT_AND_BACK,GL_FILL);
glColor3f(1.0f, 1.0f, 1.0f);
glColor3f(1.0f, 0.0f, 0.0f);
glPushMatrix();
{
glTranslatef(0.0, 0.0, -4.5);
gluCylinder(m_quadricPulsarSpinAxis, 0.020, 0.020, 9.0, 32, 1);
glTranslatef(0.0, 0.0, -2.0);
gluCylinder(m_quadricPulsarSpinAxis, 0.020, 0.020, 4.0, 32, 1);
}
glPopMatrix();
glPushMatrix();
{
glTranslatef(0.0, 0.0, -4.5);
glTranslatef(0.0, 0.0, -2.0);
gluDisk(m_quadricPulsarSpinAxisTop1, 0, 0.020, 32, 8);
}
glPopMatrix();
glPushMatrix();
{
glTranslatef(0.0, 0.0, 4.5);
glTranslatef(0.0, 0.0, 2.0);
gluDisk(m_quadricPulsarSpinAxisTop2, 0, 0.020, 32, 8);
}
glPopMatrix();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment