An open API service indexing awesome lists of open source software.

https://github.com/emmanuelmess/gazebo-plugin-example

This is a fully dockerized gazebo plugin example
https://github.com/emmanuelmess/gazebo-plugin-example

Last synced: 11 months ago
JSON representation

This is a fully dockerized gazebo plugin example

Awesome Lists containing this project

README

          

# Example gazebo plugin

#### Compile
```
docker build . -t odometer:harmonic

python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
rocker --volume $PWD/odometer:/root/odometer:rw \
--x11 odometer:harmonic

cmake -G Ninja -S . -B ./build
cmake --build ./build --config Release
cmake --install ./build --config Release --prefix $HOME/.gz/sim/plugins
```

#### Run
```
source venv/bin/activate

rocker --volume $PWD/odometer:/root/odometer:rw --x11 odometer:harmonic

gz sim -r odometer.sdf
```