add reedsshepppath README

This commit is contained in:
AtsushiSakai
2017-05-25 15:30:29 -07:00
parent e5afeb06e7
commit 2dee0aa461
2 changed files with 11 additions and 3 deletions

View File

@@ -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)