8000 rename dynamics display methods · oridong/robotics-toolbox-python@275e757 · GitHub
[go: up one dir, main page]

Skip to content

Commit 275e757

Browse files
committed
rename dynamics display methods
1 parent bfaa527 commit 275e757

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

roboticstoolbox/robot/Dynamics.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ def gravity(self, gravity_new):
4949
self.dynchanged()
5050

5151
# --------------------------------------------------------------------- #
52-
def dyntable(self):
52+
def dynamics(self):
5353
"""
5454
Pretty print the dynamic parameters (Robot superclass)
5555
56-
The dynamic parameters are printed in a table, with one row per link.
56+
The dynamic parameters (inertial and friction) are printed in a table,
57+
with one row per link.
5758
5859
Example:
5960
@@ -78,9 +79,9 @@ def dyntable(self):
7879
table.row(link.name, *link._dyn2list())
7980
print(table)
8081

81-
def printdyn(self):
82+
def dynamics_list(self):
8283
"""
83-
Print dynamic parameters
84+
Print dynamic parameters (Robot superclass)
8485
8586
Display the kinematic and dynamic parameters to the console in
8687
reable format

0 commit comments

Comments
 (0)
0