├── .ci ├── docker │ ├── env.list │ ├── ubuntu-bionic │ ├── ubuntu-disco │ ├── ubuntu-eoan │ └── ubuntu-xenial ├── install.sh ├── install_dartpy_dependencies.sh └── script.sh ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── ci_conda.yml │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── __init__.py ├── load_cartpole_env.py ├── load_empty_dart_env.py └── load_reacher_env.py ├── gym_dart ├── __init__.py └── envs │ ├── __init__.py │ ├── assets │ ├── cartpole.skel │ ├── cartpole.urdf │ ├── particle.skel │ └── reacher.skel │ ├── dart_cartpole_env.py │ ├── dart_env.py │ ├── dart_particle_env.py │ └── dart_reacher_env.py ├── pyproject.toml ├── requirements.txt ├── setup.py └── tests ├── __init__.py └── test_create_envs.py /.ci/docker/env.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/docker/env.list -------------------------------------------------------------------------------- /.ci/docker/ubuntu-bionic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/docker/ubuntu-bionic -------------------------------------------------------------------------------- /.ci/docker/ubuntu-disco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/docker/ubuntu-disco -------------------------------------------------------------------------------- /.ci/docker/ubuntu-eoan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/docker/ubuntu-eoan -------------------------------------------------------------------------------- /.ci/docker/ubuntu-xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/docker/ubuntu-xenial -------------------------------------------------------------------------------- /.ci/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/install.sh -------------------------------------------------------------------------------- /.ci/install_dartpy_dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/install_dartpy_dependencies.sh -------------------------------------------------------------------------------- /.ci/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.ci/script.sh -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/ci_conda.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.github/workflows/ci_conda.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/README.md -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/load_cartpole_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/examples/load_cartpole_env.py -------------------------------------------------------------------------------- /examples/load_empty_dart_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/examples/load_empty_dart_env.py -------------------------------------------------------------------------------- /examples/load_reacher_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/examples/load_reacher_env.py -------------------------------------------------------------------------------- /gym_dart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/__init__.py -------------------------------------------------------------------------------- /gym_dart/envs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/__init__.py -------------------------------------------------------------------------------- /gym_dart/envs/assets/cartpole.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/assets/cartpole.skel -------------------------------------------------------------------------------- /gym_dart/envs/assets/cartpole.urdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/assets/cartpole.urdf -------------------------------------------------------------------------------- /gym_dart/envs/assets/particle.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/assets/particle.skel -------------------------------------------------------------------------------- /gym_dart/envs/assets/reacher.skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/assets/reacher.skel -------------------------------------------------------------------------------- /gym_dart/envs/dart_cartpole_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/dart_cartpole_env.py -------------------------------------------------------------------------------- /gym_dart/envs/dart_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/dart_env.py -------------------------------------------------------------------------------- /gym_dart/envs/dart_particle_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/dart_particle_env.py -------------------------------------------------------------------------------- /gym_dart/envs/dart_reacher_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/gym_dart/envs/dart_reacher_env.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_create_envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dartsim/gym-dart/HEAD/tests/test_create_envs.py --------------------------------------------------------------------------------