Files
Gymnasium/gym/envs/robotics/__init__.py
Andrew Melnik 332732e05c Add optional touch sensors for hand environments (#1299)
* extending robotics shadow hand with touch sensors

* extending robotics shadow hand with touch sensors

* extending robotics shadow hand with touch sensors

* extending robotics shadow hand with touch sensors

* extending robotics shadow hand with touch sensors

* extending robotics shadow hand with touch sensors

* extending robotics shadow hand with touch sensors

Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de>

* add touch sensors layout

* add touch sensors layout

* extending robotics shadow hand with touch sensors

Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de>

* extending robotics shadow hand with touch sensors

* add touch sensors layout

Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de>

* update touch sensors layout 85

Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de>

* add manipulate_egg_touch_sensors_85.xml & manipulate_pen_touch_sensors_85.xml; ManipulateTouchSensorsEnv._render_callback()

Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de>

* add shared_touch_sensors_92.xml; solve pytest . failure

Co-authored-by: Luca Lach <llach@techfak.uni-bielefeld.de>
2019-02-08 16:00:19 -08:00

15 lines
767 B
Python

from gym.envs.robotics.fetch_env import FetchEnv
from gym.envs.robotics.fetch.slide import FetchSlideEnv
from gym.envs.robotics.fetch.pick_and_place import FetchPickAndPlaceEnv
from gym.envs.robotics.fetch.push import FetchPushEnv
from gym.envs.robotics.fetch.reach import FetchReachEnv
from gym.envs.robotics.hand.reach import HandReachEnv
from gym.envs.robotics.hand.manipulate import HandBlockEnv
from gym.envs.robotics.hand.manipulate import HandEggEnv
from gym.envs.robotics.hand.manipulate import HandPenEnv
from gym.envs.robotics.hand.manipulate_touch_sensors import HandBlockTouchSensorsEnv
from gym.envs.robotics.hand.manipulate_touch_sensors import HandEggTouchSensorsEnv
from gym.envs.robotics.hand.manipulate_touch_sensors import HandPenTouchSensorsEnv