Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
4995debe
Commit
4995debe
authored
Dec 16, 2010
by
hengli
Browse files
Added sphere to list of models
parent
ac1f90f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ui/map3D/Pixhawk3DWidget.cc
View file @
4995debe
...
...
@@ -393,6 +393,14 @@ Pixhawk3DWidget::findVehicleModels(void)
// add Pixhawk Bravo model
nodes
.
push_back
(
PixhawkCheetahGeode
::
instance
());
// add sphere of 0.05m radius
osg
::
ref_ptr
<
osg
::
Sphere
>
sphere
=
new
osg
::
Sphere
(
osg
::
Vec3f
(
0.0
f
,
0.0
f
,
0.0
f
),
0.05
f
);
osg
::
ref_ptr
<
osg
::
ShapeDrawable
>
sphereDrawable
=
new
osg
::
ShapeDrawable
(
sphere
);
osg
::
ref_ptr
<
osg
::
Geode
>
sphereGeode
=
new
osg
::
Geode
;
sphereGeode
->
addDrawable
(
sphereDrawable
);
sphereGeode
->
setName
(
"Sphere (0.1m)"
);
nodes
.
push_back
(
sphereGeode
);
// add all other models in folder
for
(
int
i
=
0
;
i
<
files
.
size
();
++
i
)
{
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment