mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-13 14:48:02 -05:00
add reedsshepppath README
This commit is contained in:
10
README.md
10
README.md
@@ -54,7 +54,6 @@ Path planning for a car robot with RRT\* and ducings path planner.
|
||||
|
||||
## Dubins path planning
|
||||
|
||||
|
||||
A sample code for Dubins path planning.
|
||||
|
||||
[Dubins path - Wikipedia](https://en.wikipedia.org/wiki/Dubins_path)
|
||||
@@ -63,6 +62,15 @@ A sample code for Dubins path planning.
|
||||

|
||||

|
||||
|
||||
## Reeds Shepp planning
|
||||
|
||||
A sample code with Reeds Shepp path planning.
|
||||
|
||||

|
||||

|
||||

|
||||
|
||||
|
||||
# License
|
||||
|
||||
MIT
|
||||
|
||||
@@ -22,7 +22,7 @@ class RRT():
|
||||
"""
|
||||
|
||||
def __init__(self, start, goal, obstacleList, randArea,
|
||||
goalSampleRate=10, maxIter=1000):
|
||||
goalSampleRate=10, maxIter=2000):
|
||||
u"""
|
||||
Setting Parameter
|
||||
|
||||
@@ -290,7 +290,7 @@ if __name__ == '__main__':
|
||||
|
||||
# Set Initial parameters
|
||||
start = [0.0, 0.0, math.radians(0.0)]
|
||||
goal = [5.0, 10.0, math.radians(0.0)]
|
||||
goal = [5.5, 10.0, math.radians(0.0)]
|
||||
|
||||
rrt = RRT(start, goal, randArea=[-2.0, 15.0], obstacleList=obstacleList)
|
||||
path = rrt.Planning(animation=False)
|
||||
|
||||
Reference in New Issue
Block a user