-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7afdf65
commit 5d9abe4
Showing
8 changed files
with
136 additions
and
396 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,19 @@ | ||
import pybullet as p | ||
from environment.static_env import StaticEnv | ||
from robot.multi_robot.dual_kuka_robot import DualKukaRobot | ||
|
||
class DualKukaEnv(StaticEnv): | ||
|
||
def __init__(self, objects, robot_config=None): | ||
if robot_config is None: | ||
robot = DualKukaRobot() | ||
else: | ||
robot = DualKukaRobot(**robot_config) | ||
super(DualKukaEnv, self).__init__(objects, robot) | ||
|
||
def set_camera_angle(self): | ||
p.resetDebugVisualizerCamera( | ||
cameraDistance=1.57699, | ||
cameraYaw=203.809, | ||
cameraPitch=-30.335, | ||
cameraTargetPosition=[0, 0, 0.7]) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.