-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'ros_kortex/' content from commit 29dfd05
git-subtree-dir: ros_kortex git-subtree-split: 29dfd05
- Loading branch information
0 parents
commit 632605c
Showing
39 changed files
with
2,568 additions
and
0 deletions.
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Files generated by invoking Julia with --code-coverage | ||
*.jl.cov | ||
*.jl.*.cov | ||
|
||
# Files generated by invoking Julia with --track-allocation | ||
*.jl.mem | ||
|
||
# System-specific files and directories generated by the BinaryProvider and BinDeps packages | ||
# They contain absolute paths specific to the host computer, and so should not be committed | ||
deps/deps.jl | ||
deps/build.log | ||
deps/downloads/ | ||
deps/usr/ | ||
deps/src/ | ||
|
||
# Build artifacts for creating documentation generated by the Documenter package | ||
docs/build/ | ||
docs/site/ | ||
|
||
# File generated by Pkg, the package manager, based on a corresponding Project.toml | ||
# It records a fixed state of all packages used by the project. As such, it should not be | ||
# committed for packages, but should be committed for applications that require a static | ||
# environment. | ||
Manifest.toml | ||
|
||
# Jupyter | ||
.ipynb_checkpoints/ |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "iiwa_stack"] | ||
path = iiwa_stack | ||
url = https://github.com/IFL-CAMP/iiwa_stack |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Documentation: http://docs.travis-ci.com/user/languages/julia/ | ||
|
||
language: julia | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
julia: | ||
- nightly | ||
- 1 | ||
|
||
jobs: | ||
allow_failures: | ||
- julia: nightly | ||
include: | ||
- stage: "Documentation" | ||
julia: 1.5 | ||
os: linux | ||
script: | ||
- julia --color=yes --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()' | ||
- julia --color=yes --project=docs/ docs/make.jl | ||
after_success: skip | ||
|
||
notifications: | ||
email: false |
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2020 Henrique Ferrolho | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name = "TORA" | ||
uuid = "a6da6c0f-f153-4ec6-bf42-6dc0ab733f84" | ||
authors = ["Henrique Ferrolho <[email protected]>"] | ||
version = "0.1.0" | ||
|
||
[deps] | ||
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581" | ||
DiffEqCallbacks = "459566f4-90b8-5000-8ac3-15dfb0a30def" | ||
ForwardDiff = "f6369f11-7733-5829-9624-2563aa707210" | ||
GeometryTypes = "4d00f742-c7ba-57c2-abde-4428a4b178cb" | ||
Ipopt = "b6b21f68-93f8-5de0-b562-5493be1d77c9" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
MeshCat = "283c5d60-a78f-5afe-a0af-af636b173e11" | ||
MeshCatMechanisms = "6ad125db-dd91-5488-b820-c1df6aab299d" | ||
NPZ = "15e1cf62-19b3-5cfa-8e77-841668bca605" | ||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | ||
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
Requires = "ae029012-a4dd-5104-9daa-d747884805df" | ||
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe" | ||
RigidBodyDynamics = "366cf18f-59d5-5db9-a4de-86a9f6786172" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
SparseDiffTools = "47a9eef4-7e08-11e9-0b38-333d64bd3804" |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# TORA.jl | ||
|
||
*Trajectory Optimization for Robot Arms* | ||
|
||
| **Documentation** | **Build Status** | | ||
| :-----------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------: | | ||
| [![][docs-stable-img]][docs-stable-url] [![][docs-dev-img]][docs-dev-url] | [![][travis-img]][travis-url] [![][appveyor-img]][appveyor-url] [![][codecov-img]][codecov-url] | | ||
|
||
## Installation | ||
|
||
The package can be installed with the Julia package manager. | ||
|
||
From the Julia REPL, type `]` to enter the Pkg REPL mode and run: | ||
``` | ||
pkg> add https://github.com/ferrolho/TORA.jl | ||
``` | ||
|
||
Or, equivalently, via the Pkg API: | ||
``` | ||
julia> import Pkg; Pkg.add("https://github.com/ferrolho/TORA.jl") | ||
``` | ||
|
||
## Documentation | ||
|
||
- [**STABLE**][docs-stable-url] — **documentation of the most recently tagged version.** | ||
- [**DEVEL**][docs-dev-url] — *documentation of the in-development version.* | ||
|
||
## Contributions and Questions | ||
|
||
Contributions are very welcome, as are feature requests and suggestions. | ||
|
||
Please open an [issue][issues-url] if you encounter any problems. | ||
|
||
[docs-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg | ||
[docs-dev-url]: https://ferrolho.github.io/TORA.jl/dev | ||
|
||
[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg | ||
[docs-stable-url]: https://ferrolho.github.io/TORA.jl/stable | ||
|
||
[travis-img]: https://travis-ci.com/ferrolho/TORA.jl.svg?branch=main&token=wa8UTQ2MKiuHJN6QRxtH | ||
[travis-url]: https://travis-ci.com/ferrolho/TORA.jl | ||
|
||
[appveyor-img]: https://ci.appveyor.com/api/projects/status/x?svg=true | ||
[appveyor-url]: https://ci.appveyor.com/project/ferrolho/tora-jl | ||
|
||
[codecov-img]: https://codecov.io/gh/ferrolho/TORA.jl/branch/main/graph/badge.svg | ||
[codecov-url]: https://codecov.io/gh/ferrolho/TORA.jl | ||
|
||
[issues-url]: https://github.com/ferrolho/TORA.jl/issues |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
build/ | ||
site/ |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
MeshCat = "283c5d60-a78f-5afe-a0af-af636b173e11" | ||
MeshCatMechanisms = "6ad125db-dd91-5488-b820-c1df6aab299d" | ||
RigidBodyDynamics = "366cf18f-59d5-5db9-a4de-86a9f6786172" | ||
TORA = "a6da6c0f-f153-4ec6-bf42-6dc0ab733f84" |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using Documenter, TORA | ||
|
||
makedocs( | ||
modules = [TORA], | ||
format = Documenter.HTML(), | ||
sitename = "TORA.jl", | ||
authors = "Henrique Ferrolho", | ||
pages = [ | ||
"Home" => "index.md", | ||
"Getting Started" => [ | ||
"install.md", | ||
"tutorial.md", | ||
], | ||
"Manual" => [ | ||
"methods.md", | ||
"advanced.md", | ||
"new_robot.md", | ||
] | ||
] | ||
) | ||
|
||
deploydocs( | ||
repo = "github.com/ferrolho/TORA.jl", | ||
devbranch = "main", | ||
) |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
# Advanced Usage |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
<mxfile host="Electron" modified="2020-11-05T17:59:49.901Z" agent="5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/13.7.9 Chrome/85.0.4183.121 Electron/10.1.3 Safari/537.36" etag="j0Y8ICP358-im4KryGHG" version="13.7.9" type="device"><diagram id="pyfFMO8P87oMTem5YJ8W" name="Page-1">3VjbcpswEP0aP7YjEGD82NiOO03bdOrOdPLUkZEMagRiZDm2+/UVIHH1BbvOJKl5MDparVZ7dpeFARzH25lAafSFY8IGNsDbAZwMbNsCvq/+MmRXICPfK4BQUKyFKmBO/xCzUqNrismqISg5Z5KmTTDgSUIC2cCQEHzTFFty1tw1RSHpAPMAsS76k2IZFagPQIV/JDSMZGsiRkZWA6sIYb6pQXA6gGPBuSzu4u2YsMx3xi3FutsDs9quldwZS41BgiSyj4aJfWfD+W6C4NfJwwQMv4+s+3fWqFDzhNi6obe2EUnwh8yzapTwRIE3kYyZGlnqtjwmyAZS8MfSb75CAh7TQM/+pmGY66xEx5xxke8CpyC71Ez3XPrsBDeo06ecER4TKXZKYFMR5moWohpXBhOEIUmfmoQjHTdhqa7c4RunyhIb6BiHQ61HRzj0QVPFiq9FQPSqOiFtRX5TkQNaiiQSIZEdReqmduwKyvk+h3vv+bj3QI186zT5t9n1Bsi3vBb53qXk201FdjuKrkc+ie9+xXC2mN09LJahc3NzD1kv8gVfJ5hgTdomopLMUxRksxtV/Y8FwyORQbQ3MjLZJU9kjf3i14kLHXBLythZofJEhCTbo8FygE3XkFILplKmHk0OOBw4DabOpmV4bVperfNt4DbLn991/nCP79uJconv99dD+/nq4fDMevhWHoY2HL0fevt5PLcknqytz/08hD34Z0x1ouR03qFVWrSnS7rNcnVPIvZJuJHv+gv3SglntfoNt5tw+4pdm4brJZzz+hyOAXRs/0qPF9gKaPjSDu/xdLm0wrn/aYU72aj17vheuLz5Z3HPlVyT+3aiIOIvg27jrxCMVlHen2TLlM5byqp2BAnZ2iPHtAyoB1m+nC3y+yzraJDL/17Hqf5w4JihPoOO2Eb7WbVL2hy91gJm7zqARKCHNsgPvZ2o0xjLEpT+4AVDBbJAwWOY73C/lowmJt65kBEPeYLYZ85TDSb8k7JVDw6mCiaMSLTIx9mk4h1NMTU7oiSIuMhtmFChSh7liZZMiaBKmoisStIkPJR70Pc8HLyF3GuljGNdmHvlq7Vp9GG/3FORinY1sTQTWB022Gm/0lvgqF1uq7iYbwt95e3RcXnP+Tf5c+03fq1KV+HB6/Zp7utrG2w8QtaV2gbYCtayH6glnbMn6S54KVXD6otkwU/1WRdO/wI=</diagram></mxfile> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
<mxfile host="Electron" modified="2020-11-05T18:01:05.670Z" agent="5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/13.7.9 Chrome/85.0.4183.121 Electron/10.1.3 Safari/537.36" etag="Vkk9289e9zaQjioqswBw" version="13.7.9" type="device"><diagram id="pyfFMO8P87oMTem5YJ8W" name="Page-1">3VjbcpswEP0aP7YjEGD8WNuJO03bdOrOdPLUkZEMagRiZDm2+/UVIHH1BbvOJKl5MDparVZ7dpeFAZzE25lAafSFY8IGNsDbAZwObNsCvq/+MmRXICPfK4BQUKyFKmBO/xCzUqNrismqISg5Z5KmTTDgSUIC2cCQEHzTFFty1tw1RSHpAPMAsS76k2IZFagPQIV/JDSMZGsiRkZWA6sIYb6pQfBmACeCc1ncxdsJYZnvjFuKdbcHZrVdK7kzlhqDBElkHw1T+86G890Uwa/ThykYfh9Z9++sUaHmCbF1Q29tI5LgD5ln1SjhiQLHkYyZGlnqtjwmyAZS8MfSb75CAh7TQM/+pmGY66xEJ5xxke8CxyC71Ez3XPrsBDeo06ecER4TKXZKYFMR5moWohpXBhOEIUmfmoQjHTdhqa7c4RunyhIb6BiHQ61HRzj0QVPFiq9FQPSqOiFtRX5TkQNaiiQSIZEdReqmduwKyvk+h3vv+bj3QI186zT5t9n1Bsi3vBb53qXk201FdjuKrkc+ie9+xXC2mN09LJahMx7fQ9aLfMHXCSZYk7aJqCTzFAXZ7EZV/2PB8EhkEO2NjEx2yRNZY7/4deJCB9ySMnZWqDwRIcn2aLAcYNM1pNSCqZSpR5MDDgdOg6mzaRlem5ZX63wbuM3y53edP9zj+3aiXOL7/fXQfr56ODyzHr6Vh6ENR++H3n4ezy2JJ2vrcz8PYQ/+GVOdKDmdd2iVFu3pkm6zXN2TiH0SbuS7/sK9UsJZrX7D7SbcvmLXpuF6Cee8PodjAB3bv9LjBbYCGr60w3s8XS6tcO5/WuFONmq9O74XLm/+WdxzJdfkvp0oiPjLoNv4KwSjVZT3J9kypfOWsqodQUK29sgxLQPqQZYvZ4v8Pss6GuTyv9dxqj8cOGaoz6AjttF+Vu2SNkevtYDZuw4gEeihDfJDb6fqNMayBKU/eMFQgSxQ8BjmO9yvJaOJiXcuZMRDniD2mfNUgwn/pGzVg4OpggkjEi3ycTapeEc3mJodURJEXOQ2TKlQJY/yREumRFAlTURWJWkSHso96HseDt5C7rVSxrEuzL3y1do0+rBf7qlIRbuaWJoJrA4b7LRf6S1w1C63VVzMt4W+8vbouLzn/Jv8ufYbv1alq/Dgdfs09/W1DTYeIetKbQNsBWvZD9SSztmTdBe8lKph9UWy4Kf6rAtv/gI=</diagram></mxfile> |
Oops, something went wrong.