10000 fix ets models · naren200/robotics-toolbox-python@49a716d · GitHub
[go: up one dir, main page]

Skip to content

Commit 49a716d

Browse files
committed
fix ets models
1 parent e2502b4 commit 49a716d

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

roboticstoolbox/models/ETS/Frankie.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import numpy as np
44
from roboticstoolbox.robot.ET import ET
55
from roboticstoolbox.robot.ETS import ETS
6-
from roboticstoolbox.robot.ERobot import ERobot
6+
from roboticstoolbox.robot.Robot import Robot
77
from roboticstoolbox.robot.Link import Link
88

99

10-
class Frankie(ERobot):
10+
class Frankie(Robot):
1111
"""
1212
A class representing the Franka Emika Panda robot arm. ETS taken from [1]
1313
based on https://frankaemika.github.io/docs/control_parameters.html

roboticstoolbox/models/ETS/GenericSeven.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import numpy as np
44
from roboticstoolbox.robot.ET import ET
55
from roboticstoolbox.robot.ETS import ETS
6-
from roboticstoolbox.robot.ERobot import ERobot
6+
from roboticstoolbox.robot.Robot import Robot
77
from roboticstoolbox.robot.Link import Link
88

99

10-
class GenericSeven(ERobot):
10+
class GenericSeven(Robot):
1111
"""
1212
Create model of a generic seven degree-of-freedom robot
1313

roboticstoolbox/models/ETS/Omni.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
import numpy as np
44
from roboticstoolbox.robot.ET import ET
55
from roboticstoolbox.robot.ETS import ETS
6-
from roboticstoolbox.robot.ERobot import ERobot
6+
from roboticstoolbox.robot.Robot import Robot
77
from roboticstoolbox.robot.Link import Link
88
import spatialgeometry as sg
99
import spatialmath as sm
1010

1111

12-
class Omni(ERobot):
12+
class Omni(Robot):
1313
"""
1414
A class an omnidirectional mobile robot.
1515

roboticstoolbox/models/ETS/Planar2.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import numpy as np
44
from roboticstoolbox.robot.ET import ET2
55
from roboticstoolbox.robot.ETS import ETS2
6-
from roboticstoolbox.robot.ERobot import ERobot2
6+
from roboticstoolbox.robot.Robot import Robot2
77
from roboticstoolbox.robot.Link import Link2
88

99

10-
class Planar2(ERobot2):
10+
class Planar2(Robot2):
1111
"""
1212
Create model of a branched planar manipulator::
1313

roboticstoolbox/models/ETS/Planar_Y.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import numpy as np
44
from roboticstoolbox.robot.ET import ET
55
from roboticstoolbox.robot.ETS import ETS
6-
from roboticstoolbox.robot.ERobot import ERobot
6+
from roboticstoolbox.robot.Robot import Robot
77
from roboticstoolbox.robot.Link import Link
88

99

10-
class Planar_Y(ERobot):
10+
class Planar_Y(Robot):
1111
"""
1212
Create model of a branched planar manipulator::
1313

roboticstoolbox/models/ETS/Puma560.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
from roboticstoolbox import ET as ET
2-
from roboticstoolbox import ERobot
2+
from roboticstoolbox import Robot
33
import numpy as np
44

55

6-
class Puma560(ERobot):
6+
class Puma560(Robot):
77
"""
88
Create model of Franka-Emika Panda manipulator
99

roboticstoolbox/models/ETS/XYPanda.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import numpy as np
44
from roboticstoolbox.robot.ET import ET
55
from roboticstoolbox.robot.ETS import ETS
6-
from roboticstoolbox.robot.ERobot import ERobot
6+
from roboticstoolbox.robot.Robot import Robot
77
from roboticstoolbox.robot.Link import Link
88

99

10-
class XYPanda(ERobot):
10+
class XYPanda(Robot):
1111
"""
1212
Create model of Franka-Emika Panda manipulator on an XY platform
1313

0 commit comments

Comments
 (0)
29D4
0