Skip to content

Commit ffbf433

Browse files
committed
rework of robot classes
polish doco comment out unneeded methods move methods between classes and superclasses big rework of qlim replace trajn with getmatrix logic remove some instances of using stored q value
1 parent 1d13a66 commit ffbf433

File tree

8 files changed

+2081
-2001
lines changed

8 files changed

+2081
-2001
lines changed

roboticstoolbox/robot/DHDynamics.py

Lines changed: 375 additions & 405 deletions
Large diffs are not rendered by default.

roboticstoolbox/robot/DHLink.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ def __init__(
438438
a=0.0,
439439
alpha=0.0,
440440
offset=0.0,
441-
qlim=np.zeros(2),
441+
qlim=None,
442442
flip=False,
443443
**kwargs
444444
):
@@ -509,7 +509,7 @@ def __init__(
509509
a=0.0,
510510
alpha=0.0,
511511
offset=0.0,
512-
qlim=np.zeros(2),
512+
qlim=None,
513513
flip=False,
514514
**kwargs
515515
):
@@ -578,7 +578,7 @@ def __init__(
578578
a=0.0,
579579
alpha=0.0,
580580
offset=0.0,
581-
qlim=np.zeros(2),
581+
qlim=None,
582582
flip=False,
583583
**kwargs
584584
):
@@ -649,7 +649,7 @@ def __init__(
649649
a=0.0,
650650
alpha=0.0,
651651
offset=0.0,
652-
qlim=np.zeros(2),
652+
qlim=None,
653653
flip=False,
654654
**kwargs
655655
):

0 commit comments

Comments
 (0)