Skip to content

Commit 1c62b3e

Browse files
committed
attempting interpopability with ERobot class
1 parent 2c74fc8 commit 1c62b3e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

roboticstoolbox/robot/DHRobot.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ def jacobe(self, q, half=None):
976976

977977
return J
978978

979-
def jacob0(self, q=None, T=None, half=None, analytical=None):
979+
def jacob0(self, q=None, T=None, half=None, analytical=None, start=None, end=None):
980980
r"""
981981
Manipulator Jacobian in world frame
982982
@@ -1070,7 +1070,7 @@ def jacob0(self, q=None, T=None, half=None, analytical=None):
10701070
return J0
10711071

10721072

1073-
def hessian0(self, q=None, J0=None):
1073+
def hessian0(self, q=None, J0=None, start=None, end=None):
10741074
r"""
10751075
Manipulator Hessian in base frame
10761076
@@ -1125,6 +1125,12 @@ def hessian0(self, q=None, J0=None):
11251125
"""
11261126

11271127
return self.ets().hessian0(q, J0)
1128+
1129+
def _get_limit_links(self, end=None, start=None):
1130+
# For compatibility with ERobot
1131+
1132+
return None, None, None
1133+
11281134
# -------------------------------------------------------------------------- #
11291135

11301136
def _init_rne(self):

0 commit comments

Comments
 (0)