File tree Expand file tree Collapse file tree 5 files changed +479
-78
lines changed Expand file tree Collapse file tree 5 files changed +479
-78
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,6 @@ Manipulator arms
8
8
arm_dh
9
9
arm_ets
10
10
arm_urdf
11
+ arm_superclass
11
12
arm_backend
12
13
arm_trajectory
Original file line number Diff line number Diff line change
1
+ Superclasses
2
+ ============
3
+
4
+
5
+ Robot
6
+ -------
7
+
8
+ .. inheritance-diagram :: roboticstoolbox.ERobot
9
+ :top-classes: roboticstoolbox.Robot
10
+ :parts: 2
11
+
12
+ The various models :ref: `E Models ` all subclass this class.
13
+
14
+ .. automodule :: roboticstoolbox.robot.Robot
15
+ :members:
16
+ :undoc-members:
17
+ :show-inheritance:
18
+ :inherited-members:
19
+ :special-members: __getitem__
20
+
21
+ Link
22
+ -------
23
+
24
+ The ``ERobot `` is defined by a tree of ``ELink `` subclass objects.
25
+
26
+ .. inheritance-diagram :: roboticstoolbox.Link
27
+ :top-classes: roboticstoolbox.robot.Link
28
+ :parts: 2
29
+
30
+ .. automodule :: roboticstoolbox.robot.Link
31
+ :members:
32
+ :undoc-members:
33
+ :show-inheritance:
34
+ :inherited-members:
Original file line number Diff line number Diff line change @@ -41,9 +41,10 @@ def _sin(theta):
41
41
42
42
class DHLink (Link ):
43
43
"""
44
- A link superclass for all link types. A Link object holds all information
45
- related to a robot joint and link such as kinematics parameters,
46
- rigid-body inertial parameters, motor and transmission parameters.
44
+ A link superclass for all robots defined using Denavit-Hartenberg notation.
45
+ A Link object holds all information related to a robot joint and link such
46
+ as kinematics parameters, rigid-body inertial parameters, motor and
47
+ transmission parameters.
47
48
48
49
:param theta: kinematic: joint angle
49
50
:type theta: float
You can’t perform that action at this time.
0 commit comments