-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Path Planning #32
Merged
Merged
Path Planning #32
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
86a6488
[WIP] update from tab path planner
79f6212
Some of the select and drag implementation (start point, end point, p…
4b909f4
updated teb planner gui. compiles
5df6a4c
base interfaces
e93ca88
beginnings of homotopy
ae9f92a
new stuff from the base repo
5ba18ad
submodule updates
13c5dd4
added wrapper and it compiles
813738b
cleaned and got it working
f596c81
updates for import/export
9f71baf
merge dev
2d5967b
removed communication again
1fc3865
changed namespace for framework
02f7495
Add package to travis
jptech 557418f
warning
e8b4ce3
Merge branch 'navigation/dev' of github.com:utk-robotics-2017/rip int…
09575a2
compile g2o
e8df5b2
suitesparse
c9a85b4
compile g2o
7e2f108
Merge branch 'navigation/dev' of github.com:utk-robotics-2017/rip int…
41a7299
test
1355b70
test2
59ee9a2
pushd
37cd157
fixed a shit ton of shit
a823df8
no more building g2o twice
67c13d9
it compile
a2e58e6
fix unittest namespace
a8c84c9
fixed some issues with roboclaw diag
e4b1902
Merge branch 'dev' of github.com:utk-robotics-2017/rip into navigatio…
542218c
fixed units::pi in testing
7915aad
An attempt at fixing compilation for teb planner
jptech d0914c0
removed include boost crap
56dd9f2
Merge branch 'navigation/dev' of github.com:utk-robotics-2017/rip int…
a9deaa8
Merge branch 'dev' of github.com:utk-robotics-2017/rip into navigatio…
1b49519
Merge branch 'dev' of github.com:utk-robotics-2017/rip into navigatio…
bb0be54
periphery
e857e4c
add header for stdexcept
jptech 83a7a0c
Merge branch 'navigation/dev' of github.com:utk-robotics-2017/rip int…
jptech File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd external/g2o | ||
mkdir build | ||
cd build | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In order to keep directory locations in check, we should use
pushd
andpopd
to build a directory stack and then return to the original directory.