Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
Seminar-HFO
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Shashank Suhas
Seminar-HFO
Commits
670fc45a
Commit
670fc45a
authored
Nov 07, 2017
by
Blair Watkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ball y params initialization
parent
b7aa50ea
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
CMakeLists.txt
CMakeLists.txt
+3
-2
bin/HFO
bin/HFO
+5
-1
No files found.
CMakeLists.txt
View file @
670fc45a
...
...
@@ -14,7 +14,8 @@ find_package(FLEX REQUIRED)
include_directories
(
${
Boost_INCLUDE_DIRS
}
)
ExternalProject_Add
(
rcssserver
GIT_REPOSITORY
"https://github.com/mhauskn/rcssserver.git"
# GIT_REPOSITORY "https://github.com/mhauskn/rcssserver.git"
GIT_REPOSITORY
"https://github.com/wbwatkinson/rcssserver.git"
GIT_TAG
"master"
CMAKE_ARGS -DCMAKE_BUILD_TYPE=MinSizeRel
UPDATE_COMMAND
""
...
...
bin/HFO
View file @
670fc45a
...
...
@@ -192,6 +192,10 @@ def parseArgs():
help
=
'Ball initialization min x position: [0,1]. Default: 0'
)
p
.
add_argument
(
'--ball-x-max'
,
dest
=
'max_ball_x'
,
type
=
float
,
default
=
0.2
,
help
=
'Ball initialization max x position: [0,1]. Default: .2'
)
p
.
add_argument
(
'--ball-y-min'
,
dest
=
'min_ball_y'
,
type
=
float
,
default
=-
0.8
,
help
=
'Ball initialization min y position: [-1,1]. Default: -0.8'
)
p
.
add_argument
(
'--ball-y-max'
,
dest
=
'max_ball_y'
,
type
=
float
,
default
=
0.8
,
help
=
'Ball initialization max y position: [-1,1]. Default: 0.8'
)
p
.
add_argument
(
'--verbose'
,
dest
=
'verbose'
,
action
=
'store_true'
,
default
=
False
,
help
=
'Print verbose output.'
)
args
=
p
.
parse_args
()
...
...
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