Skip to content

Commit 70f713a

Browse files
committed
small bug fixes
1 parent f5710e5 commit 70f713a

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

roboticstoolbox/backends/PyPlot/PyPlot.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
try:
1818
import matplotlib
1919
import matplotlib.pyplot as plt
20+
from mpl_toolkits.mplot3d import Axes3D
2021
from matplotlib.widgets import Slider
2122
matplotlib.rcParams['pdf.fonttype'] = 42
2223
matplotlib.rcParams['ps.fonttype'] = 42

roboticstoolbox/robot/IK.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,11 +129,11 @@ def ikine_LM(
129129
and rotation about X, Y and Z respectively.
130130
:type mask: ndarray(6)
131131
:param ilimit: maximum number of iterations (default 500)
132-
:type ilimit: int
132+
:type ilimit: int
133133
:param rlimit: maximum number of consecutive step rejections (default 100)
134-
:type rlimit: int
134+
:type rlimit: int
135135
:param tol: final error tolerance (default 1e-10)
136-
:type tol: float
136+
:type tol: float
137137
:param L: initial value of lambda
138138
:type L: float (default 0.1)
139139
:param Lmin: minimum allowable value of lambda

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
here = os.path.abspath(os.path.dirname(__file__))
55

66
req = [
7-
'numpy',
8-
'spatialmath-python>=0.8.4',
7+
'numpy>=1.18.0',
8+
'spatialmath-python>=0.8.7',
99
'pgraph-python',
1010
'scipy',
1111
'matplotlib',

0 commit comments

Comments
 (0)