Skip to content

Commit 4fe851c

Browse files
authored
Correct typos (AtsushiSakai#542)
* Update cubic_spline_planner.py * Update rear_wheel_feedback.py
1 parent 06b2450 commit 4fe851c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

PathPlanning/CubicSpline/cubic_spline_planner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def main(): # pragma: no cover
195195
import matplotlib.pyplot as plt
196196
x = [-2.5, 0.0, 2.5, 5.0, 7.5, 3.0, -1.0]
197197
y = [0.7, -6, 5, 6.5, 0.0, 5.0, -2.0]
198-
ds = 0.1 # [m] distance of each intepolated points
198+
ds = 0.1 # [m] distance of each interpolated points
199199

200200
sp = Spline2D(x, y)
201201
s = np.arange(0, sp.s[-1], ds)

PathTracking/rear_wheel_feedback/rear_wheel_feedback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from scipy import interpolate
1313
from scipy import optimize
1414

15-
Kp = 1.0 # speed propotional gain
15+
Kp = 1.0 # speed proportional gain
1616
# steering control parameter
1717
KTH = 1.0
1818
KE = 0.5

0 commit comments

Comments
 (0)