Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AtsushiSakai committed Jan 15, 2019
2 parents 172cf9f + d9ee56e commit bbde6e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PathTracking/pure_pursuit/pure_pursuit.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def calc_target_index(state, cx, cy):
# search look ahead target point index
while Lf > L and (ind + 1) < len(cx):
dx = cx[ind + 1] - cx[ind]
dy = cx[ind + 1] - cx[ind]
dy = cy[ind + 1] - cy[ind]
L += math.sqrt(dx ** 2 + dy ** 2)
ind += 1

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ You can check the full documentation online: [https://pythonrobotics.readthedocs

1. Clone this repo.

> git clone https://github.com/dhiegomaga/PythonRobotics.git
> git clone https://github.com/AtsushiSakai/PythonRobotics.git
> cd PythonRobotics/
Expand Down

0 comments on commit bbde6e8

Please sign in to comment.