Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
c1e5261f
Commit
c1e5261f
authored
Apr 12, 2010
by
lm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working on HUD
parent
e3c5ea86
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
HUD.cc
src/ui/HUD.cc
+4
-3
No files found.
src/ui/HUD.cc
View file @
c1e5261f
...
...
@@ -513,6 +513,7 @@ void HUD::paintRollPitchStrips()
void
HUD
::
paintGL
()
{
// Read out most important values to limit hash table lookups
float
roll
=
roll
*
0.5
+
0.5
*
values
.
value
(
"roll"
,
0.0
f
);
float
pitch
=
pitch
*
0.5
+
0.5
*
values
.
value
(
"pitch"
,
0.0
f
);
...
...
@@ -527,7 +528,7 @@ void HUD::paintGL()
double
scalingFactorH
=
this
->
height
()
/
vheight
;
if
(
scalingFactorH
<
scalingFactor
)
scalingFactor
=
scalingFactorH
;
makeCurrent
();
//
makeCurrent();
glClear
(
GL_COLOR_BUFFER_BIT
);
//if(!noCamera) glDrawPixels(glImage.width(), glImage.height(), GL_RGBA, GL_UNSIGNED_BYTE, glImage.bits());
glDrawPixels
(
glImage
.
width
(),
glImage
.
height
(),
GL_RGBA
,
GL_UNSIGNED_BYTE
,
glImage
.
bits
());
// FIXME Remove after testing
...
...
@@ -536,7 +537,7 @@ void HUD::paintGL()
// Blue / Brown background
if
(
noCamera
)
paintCenterBackground
(
roll
,
pitch
,
yaw
);
glFlush
();
//
glFlush();
// Draw instruments
// TESTING THIS SHOULD BE MOVED INTO A QGRAPHICSVIEW
...
...
@@ -684,7 +685,7 @@ void HUD::paintGL()
// Rotate view and draw all roll-dependent indicators
painter
.
rotate
((
roll
/
M_PI
)
*
-
180.0
f
);
qDebug
()
<<
"ROLL"
<<
roll
<<
"PITCH"
<<
pitch
<<
"YAW DIFF"
<<
valuesDot
.
value
(
"roll"
,
0.0
f
);
//
qDebug() << "ROLL" << roll << "PITCH" << pitch << "YAW DIFF" << valuesDot.value("roll", 0.0f);
// CENTER
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment