Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
pulsatingscience
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
einsteinathome
pulsatingscience
Commits
5d8927f0
Commit
5d8927f0
authored
Sep 9, 2011
by
Oliver Bock
Browse files
Options
Downloads
Patches
Plain Diff
Enclosed glPushMatrix in blocks to help formatter
parent
3526540e
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/pulsaranimationwidget.cpp
+119
-99
119 additions, 99 deletions
src/pulsaranimationwidget.cpp
with
119 additions
and
99 deletions
src/pulsaranimationwidget.cpp
+
119
−
99
View file @
5d8927f0
...
@@ -265,29 +265,35 @@ void PulsarAnimationWidget::paintGL()
...
@@ -265,29 +265,35 @@ void PulsarAnimationWidget::paintGL()
// draw companion
// draw companion
glPushMatrix
();
glPushMatrix
();
{
glTranslatef
(
sin
((
m_orbitRotationAngle
+
180.0
)
*
deg2rad
)
*
m_companionSemiMajorAxis
,
glTranslatef
(
sin
((
m_orbitRotationAngle
+
180.0
)
*
deg2rad
)
*
m_companionSemiMajorAxis
,
0.0
,
0.0
,
cos
((
m_orbitRotationAngle
+
180.0
)
*
deg2rad
)
*
m_companionSemiMajorAxis
);
cos
((
m_orbitRotationAngle
+
180.0
)
*
deg2rad
)
*
m_companionSemiMajorAxis
);
gluSphere
(
m_quadricCompanion
,
1.0
,
32
,
32
);
gluSphere
(
m_quadricCompanion
,
1.0
,
32
,
32
);
}
glPopMatrix
();
glPopMatrix
();
// draw pulsar
// draw pulsar
glPushMatrix
();
glPushMatrix
();
{
glTranslatef
(
sin
(
m_orbitRotationAngle
*
deg2rad
)
*
m_pulsarSemiMajorAxis
,
glTranslatef
(
sin
(
m_orbitRotationAngle
*
deg2rad
)
*
m_pulsarSemiMajorAxis
,
0.0
,
0.0
,
cos
(
m_orbitRotationAngle
*
deg2rad
)
*
m_pulsarSemiMajorAxis
);
cos
(
m_orbitRotationAngle
*
deg2rad
)
*
m_pulsarSemiMajorAxis
);
glPushMatrix
();
glPushMatrix
();
{
glRotatef
(
m_pulsarSpinAxisInclination
,
0.0
,
0.0
,
1.0
);
glRotatef
(
m_pulsarSpinAxisInclination
,
0.0
,
0.0
,
1.0
);
glRotatef
(
m_pulsarRotationAngle
,
0.0
,
1.0
,
0.0
);
glRotatef
(
m_pulsarRotationAngle
,
0.0
,
1.0
,
0.0
);
// draw spin axis
// draw spin axis
if
(
m_showRotationAxes
)
{
if
(
m_showRotationAxes
)
{
glPushMatrix
();
glPushMatrix
();
{
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT_AND_DIFFUSE
,
translucent
);
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT_AND_DIFFUSE
,
translucent
);
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
glTranslatef
(
0.0
,
0.0
,
-
5.0
);
glTranslatef
(
0.0
,
0.0
,
-
5.0
);
gluCylinder
(
m_quadricPulsarSpinAxis
,
0.05
,
0.05
,
10.0
,
32
,
1
);
gluCylinder
(
m_quadricPulsarSpinAxis
,
0.05
,
0.05
,
10.0
,
32
,
1
);
}
glPopMatrix
();
glPopMatrix
();
}
}
...
@@ -305,6 +311,7 @@ void PulsarAnimationWidget::paintGL()
...
@@ -305,6 +311,7 @@ void PulsarAnimationWidget::paintGL()
glDisable
(
GL_TEXTURE_GEN_S
);
glDisable
(
GL_TEXTURE_GEN_S
);
glDisable
(
GL_TEXTURE_GEN_T
);
glDisable
(
GL_TEXTURE_GEN_T
);
glDisable
(
GL_TEXTURE_2D
);
glDisable
(
GL_TEXTURE_2D
);
}
glPopMatrix
();
glPopMatrix
();
// TODO: should be located elsewhere
// TODO: should be located elsewhere
...
@@ -312,10 +319,9 @@ void PulsarAnimationWidget::paintGL()
...
@@ -312,10 +319,9 @@ void PulsarAnimationWidget::paintGL()
static
GLfloat
coneDiffuse
[]
=
{
1.0
,
1.0
,
0.0
,
1.0
};
static
GLfloat
coneDiffuse
[]
=
{
1.0
,
1.0
,
0.0
,
1.0
};
static
GLfloat
coneSpecular
[]
=
{
1.0
,
1.0
,
0.5
,
1.0
};
static
GLfloat
coneSpecular
[]
=
{
1.0
,
1.0
,
0.5
,
1.0
};
glMaterialfv
(
GL_FRONT
,
GL_SPECULAR
,
coneSpecular
);
// first cone
// first cone
glPushMatrix
();
glPushMatrix
();
{
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
glRotatef
(
m_pulsarSpinAxisInclination
,
0.0
,
1.0
,
0.0
);
glRotatef
(
m_pulsarSpinAxisInclination
,
0.0
,
1.0
,
0.0
);
...
@@ -325,9 +331,11 @@ void PulsarAnimationWidget::paintGL()
...
@@ -325,9 +331,11 @@ void PulsarAnimationWidget::paintGL()
// draw magnetic axis (for both cones)
// draw magnetic axis (for both cones)
if
(
m_showRotationAxes
)
{
if
(
m_showRotationAxes
)
{
glPushMatrix
();
glPushMatrix
();
{
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT_AND_DIFFUSE
,
translucent
);
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT_AND_DIFFUSE
,
translucent
);
glTranslatef
(
0.0
,
0.0
,
-
5.0
);
glTranslatef
(
0.0
,
0.0
,
-
5.0
);
gluCylinder
(
m_quadricPulsarMagneticAxis
,
0.05
,
0.05
,
10.0
,
32
,
1
);
gluCylinder
(
m_quadricPulsarMagneticAxis
,
0.05
,
0.05
,
10.0
,
32
,
1
);
}
glPopMatrix
();
glPopMatrix
();
}
}
...
@@ -336,10 +344,12 @@ void PulsarAnimationWidget::paintGL()
...
@@ -336,10 +344,12 @@ void PulsarAnimationWidget::paintGL()
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT
,
coneAmbient
);
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT
,
coneAmbient
);
glMaterialfv
(
GL_FRONT
,
GL_DIFFUSE
,
coneDiffuse
);
glMaterialfv
(
GL_FRONT
,
GL_DIFFUSE
,
coneDiffuse
);
gluCylinder
(
m_quadricPulsarCone1
,
0.475
,
0.0
,
3.0
,
32
,
32
);
gluCylinder
(
m_quadricPulsarCone1
,
0.475
,
0.0
,
3.0
,
32
,
32
);
}
glPopMatrix
();
glPopMatrix
();
// second cone
// second cone
glPushMatrix
();
glPushMatrix
();
{
glRotatef
(
-
90.0
,
1.0
,
0.0
,
0.0
);
glRotatef
(
-
90.0
,
1.0
,
0.0
,
0.0
);
glRotatef
(
-
m_pulsarSpinAxisInclination
,
0.0
,
1.0
,
0.0
);
glRotatef
(
-
m_pulsarSpinAxisInclination
,
0.0
,
1.0
,
0.0
);
...
@@ -351,16 +361,20 @@ void PulsarAnimationWidget::paintGL()
...
@@ -351,16 +361,20 @@ void PulsarAnimationWidget::paintGL()
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT
,
coneAmbient
);
glMaterialfv
(
GL_FRONT
,
GL_AMBIENT
,
coneAmbient
);
glMaterialfv
(
GL_FRONT
,
GL_DIFFUSE
,
coneDiffuse
);
glMaterialfv
(
GL_FRONT
,
GL_DIFFUSE
,
coneDiffuse
);
gluCylinder
(
m_quadricPulsarCone2
,
0.475
,
0.0
,
3.0
,
32
,
32
);
gluCylinder
(
m_quadricPulsarCone2
,
0.475
,
0.0
,
3.0
,
32
,
32
);
}
glPopMatrix
();
glPopMatrix
();
}
glPopMatrix
();
glPopMatrix
();
// save current state
// save current state
glMatrixMode
(
GL_PROJECTION
);
glMatrixMode
(
GL_PROJECTION
);
glPushMatrix
();
glPushMatrix
();
{
glLoadIdentity
();
glLoadIdentity
();
glOrtho
(
0
,
width
(),
0
,
height
(),
0.1
,
501.0
);
glOrtho
(
0
,
width
(),
0
,
height
(),
0.1
,
501.0
);
glMatrixMode
(
GL_MODELVIEW
);
glMatrixMode
(
GL_MODELVIEW
);
glPushMatrix
();
glPushMatrix
();
{
glLoadIdentity
();
glLoadIdentity
();
// draw backdrop (independent parallel projection)
// draw backdrop (independent parallel projection)
...
@@ -370,8 +384,10 @@ void PulsarAnimationWidget::paintGL()
...
@@ -370,8 +384,10 @@ void PulsarAnimationWidget::paintGL()
// restore original state
// restore original state
glMatrixMode
(
GL_PROJECTION
);
glMatrixMode
(
GL_PROJECTION
);
}
glPopMatrix
();
glPopMatrix
();
glMatrixMode
(
GL_MODELVIEW
);
glMatrixMode
(
GL_MODELVIEW
);
}
glPopMatrix
();
glPopMatrix
();
// draw orbital planes
// draw orbital planes
...
@@ -383,6 +399,7 @@ void PulsarAnimationWidget::paintGL()
...
@@ -383,6 +399,7 @@ void PulsarAnimationWidget::paintGL()
// companion's plane (only if not identical with pulsar's)
// companion's plane (only if not identical with pulsar's)
if
(
m_companionSemiMajorAxis
!=
m_pulsarSemiMajorAxis
)
{
if
(
m_companionSemiMajorAxis
!=
m_pulsarSemiMajorAxis
)
{
glPushMatrix
();
glPushMatrix
();
{
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
// separate them slightly in case of overlap
// separate them slightly in case of overlap
...
@@ -396,16 +413,19 @@ void PulsarAnimationWidget::paintGL()
...
@@ -396,16 +413,19 @@ void PulsarAnimationWidget::paintGL()
m_companionSemiMajorAxis
-
sizeOffset
,
m_companionSemiMajorAxis
-
sizeOffset
,
m_companionSemiMajorAxis
+
sizeOffset
,
m_companionSemiMajorAxis
+
sizeOffset
,
64
,
1
);
64
,
1
);
}
glPopMatrix
();
glPopMatrix
();
}
}
// pulsar's plane
// pulsar's plane
glPushMatrix
();
glPushMatrix
();
{
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
glRotatef
(
90.0
,
1.0
,
0.0
,
0.0
);
gluDisk
(
m_quadricPulsarOrbitPlane
,
gluDisk
(
m_quadricPulsarOrbitPlane
,
m_pulsarSemiMajorAxis
-
sizeOffset
,
m_pulsarSemiMajorAxis
-
sizeOffset
,
m_pulsarSemiMajorAxis
+
sizeOffset
,
m_pulsarSemiMajorAxis
+
sizeOffset
,
64
,
1
);
64
,
1
);
}
glPopMatrix
();
glPopMatrix
();
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment