├── .gitignore ├── README.md ├── scenes ├── body_joint_wheel.ttt └── cart_pole.ttt ├── setup.py ├── test_body_joint.py ├── test_cartpole.py └── vrepper ├── __init__.py ├── complexCommandTest.py ├── pathPlanningTest.py ├── readMe.txt ├── remoteApi-3.4.0-x64.dll ├── remoteApi-3.4.0-x64.dylib ├── remoteApi-3.4.0-x64.so ├── simpleSynchronousTest.py ├── simpleTest.py ├── version.py ├── vrep.py ├── vrepConst.py └── vrepper.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | build 4 | dist 5 | .idea 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/README.md -------------------------------------------------------------------------------- /scenes/body_joint_wheel.ttt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/scenes/body_joint_wheel.ttt -------------------------------------------------------------------------------- /scenes/cart_pole.ttt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/scenes/cart_pole.ttt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/setup.py -------------------------------------------------------------------------------- /test_body_joint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/test_body_joint.py -------------------------------------------------------------------------------- /test_cartpole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/test_cartpole.py -------------------------------------------------------------------------------- /vrepper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vrepper/complexCommandTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/complexCommandTest.py -------------------------------------------------------------------------------- /vrepper/pathPlanningTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/pathPlanningTest.py -------------------------------------------------------------------------------- /vrepper/readMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/readMe.txt -------------------------------------------------------------------------------- /vrepper/remoteApi-3.4.0-x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/remoteApi-3.4.0-x64.dll -------------------------------------------------------------------------------- /vrepper/remoteApi-3.4.0-x64.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/remoteApi-3.4.0-x64.dylib -------------------------------------------------------------------------------- /vrepper/remoteApi-3.4.0-x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/remoteApi-3.4.0-x64.so -------------------------------------------------------------------------------- /vrepper/simpleSynchronousTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/simpleSynchronousTest.py -------------------------------------------------------------------------------- /vrepper/simpleTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/simpleTest.py -------------------------------------------------------------------------------- /vrepper/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/version.py -------------------------------------------------------------------------------- /vrepper/vrep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/vrep.py -------------------------------------------------------------------------------- /vrepper/vrepConst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/vrepConst.py -------------------------------------------------------------------------------- /vrepper/vrepper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctmakro/vrepper/HEAD/vrepper/vrepper.py --------------------------------------------------------------------------------