Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Simox
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
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Leander Singer
Simox
Commits
38a36653
Commit
38a36653
authored
7 years ago
by
Raphael
Browse files
Options
Downloads
Patches
Plain Diff
add a function to get all sensors of a robot with a given type
parent
fd162946
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
VirtualRobot/Robot.h
+15
-0
15 additions, 0 deletions
VirtualRobot/Robot.h
with
15 additions
and
0 deletions
VirtualRobot/Robot.h
+
15
−
0
View file @
38a36653
...
...
@@ -370,6 +370,21 @@ namespace VirtualRobot
*/
virtual
std
::
vector
<
SensorPtr
>
getSensors
();
template
<
class
SensorType
>
std
::
vector
<
boost
::
shared_ptr
<
SensorType
>>
getSensors
()
{
std
::
vector
<
boost
::
shared_ptr
<
SensorType
>>
result
;
std
::
vector
<
SensorPtr
>
sensors
=
getSensors
();
result
.
reserve
(
sensors
.
size
());
for
(
SensorPtr
&
sensor
:
sensors
)
{
if
(
dynamic_cast
<
SensorType
*>
(
sensor
.
get
()))
{
result
.
emplace_back
(
boost
::
static_pointer_cast
<
SensorType
>
(
sensor
));
}
}
return
result
;
}
/*!
Creates an XML string that defines the complete robot. Filenames of all visualization models are set to modelPath/RobotNodeName_visu and/or modelPath/RobotNodeName_colmodel.
@see RobotIO::saveXML.
...
...
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