Skip to content

Commit

Permalink
Merge branch 'panda_cleanup_ws' of https://github.com/StanfordVL/perls2
Browse files Browse the repository at this point in the history
… into panda_cleanup_ws
  • Loading branch information
danfeiX committed Mar 1, 2021
2 parents f63383b + bc03f35 commit fe68a2d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion perls2/controllers/ee_imp.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,10 @@ def __init__(self,
self.output_min = np.array(output_min)

# limits
self.position_limits = position_limits
if position_limits is not None:
self.position_limits = np.array(position_limits)
else:
self.position_limits = position_limits
self.orientation_limits = orientation_limits

# kp kv
Expand Down

0 comments on commit fe68a2d

Please sign in to comment.