10000 fix errors in documentation code examples · songhyonkim/spatialmath-python@95fd8f3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 95fd8f3

Browse files
committed
fix errors in documentation code examples
1 parent dbb4e8c commit 95fd8f3

File tree

3 files changed

+56
-55
lines changed

3 files changed

+56
-55
lines changed

spatialmath/base/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,7 @@
256< 8000 code>256
"trinv",
257257
"tr2delta",
258258
"tr2jac",
259+
"tr2adjoint",
259260
"rpy2jac",
260261
"eul2jac",
261262
"exp2jac",

spatialmath/base/transforms2d.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -375,8 +375,8 @@ def trlog2(T, check=True, twist=False, tol=10):
375375
>>> trlog2(rot2(0.3))
376376
>>> trlog2(rot2(0.3), twist=True)
377377
378-
:seealso: :func:`~trexp`, :func:`~spatialmath.smb.transformsNd.vex`,
379-
:func:`~spatialmath.smb.transformsNd.vexa`
378+
:seealso: :func:`~trexp`, :func:`~spatialmath.base.transformsNd.vex`,
379+
:func:`~spatialmath.base.transformsNd.vexa`
380380
"""
381381

382382
if ishom2(T, check=check):
@@ -621,7 +621,7 @@ def trinterp2(start, end, s=None):
621621
>>> trinterp2(None, T2, 1)
622622
>>> trinterp2(None, T2, 0.5)
623623
624-
:seealso: :func:`~spatialmath.smb.transforms3d.trinterp`
624+
:seealso: :func:`~spatialmath.base.transforms3d.trinterp`
625625
626626
"""
627627
if smb.ismatrix(end, (2, 2)):

0 commit comments

Comments
 (0)
0