Skip to content

Commit 1c3b876

Browse files
committed
neo progress
1 parent fd2f34a commit 1c3b876

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

examples/neo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
# object on the robot to the collision in the scene
109109
c_Ain, c_bin = panda.link_collision_damper(
110110
collision, panda.q[:n], 0.3, 0.05, 1.0,
111-
panda.elinks['panda_joint1'], panda.elinks['panda_hand_joint'])
111+
panda.link_dict['panda_link1'], panda.link_dict['panda_hand'])
112112

113113
# If there are any parts of the robot within the influence distance
114114
# to the collision in the scene

roboticstoolbox/robot/ERobot.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -470,6 +470,11 @@ def elinks(self):
470470
return self._links
471471
# --------------------------------------------------------------------- #
472472

473+
@property
474+
def link_dict(self):
475+
return self._linkdict
476+
# --------------------------------------------------------------------- #
477+
473478
@property
474479
def base_link(self):
475480
return self._base_link

0 commit comments

Comments
 (0)