8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b597fa commit 4ffaa12Copy full SHA for 4ffaa12
spatialmath/super_pose.py
@@ -483,16 +483,19 @@ def interp(self, arg):
483
#----------------------- i/o stuff
484
485
def print(self):
486
+ print(self)
487
+
488
+ def printline(self):
489
if self.N == 2:
- trprint2(self.A)
490
+ tr.trprint2(self.A)
491
else:
- trprint(self.A)
492
+ tr.trprint(self.A)
493
- def plot(self):
494
+ def plot(self, *args, **kwargs):
495
- trplot2(self.A)
496
+ tr.trplot2(self.A, *args, **kwargs)
497
- trplot(self.A)
498
+ tr.trplot(self.A, *args, **kwargs)
499
500
def __repr__(self):
501
# #print('in __repr__')
0 commit comments