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
70004c55
Commit
70004c55
authored
5 years ago
by
Rainer Kartmann
Browse files
Options
Downloads
Patches
Plain Diff
Rename param and add comment
parent
fae58a35
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
VirtualRobot/MJCF/Document.cpp
+2
-2
2 additions, 2 deletions
VirtualRobot/MJCF/Document.cpp
VirtualRobot/MJCF/Document.h
+6
-1
6 additions, 1 deletion
VirtualRobot/MJCF/Document.h
with
8 additions
and
3 deletions
VirtualRobot/MJCF/Document.cpp
+
2
−
2
View file @
70004c55
...
...
@@ -63,10 +63,10 @@ void Document::setModelName(const std::string& name)
root
->
setAttribute
(
"model"
,
name
);
}
Include
Document
::
addInclude
(
const
std
::
string
&
filename
)
Include
Document
::
addInclude
(
const
std
::
string
&
relativePath
)
{
Include
include
=
root
->
addChild
<
Include
>
();
include
.
file
=
filename
;
include
.
file
=
relativePath
;
return
include
;
}
...
...
This diff is collapsed.
Click to expand it.
VirtualRobot/MJCF/Document.h
+
6
−
1
View file @
70004c55
...
...
@@ -66,7 +66,12 @@ namespace mjcf
SensorSection
sensor
()
{
return
section
<
SensorSection
>
();
}
KeyframeSection
keyframe
()
{
return
section
<
KeyframeSection
>
();
}
Include
addInclude
(
const
std
::
string
&
filename
);
/**
* @brief Add an include element including the file specified by `relativePath`.
* The given path must be relative to the directory where the model will be stored.
* @see http://www.mujoco.org/book/XMLreference.html#include
*/
Include
addInclude
(
const
std
::
string
&
relativePath
);
/**
* @brief Set the class attribute of all new applicable elements
...
...
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