Skip to content

Commit 6f3c12c

Browse files
committed
add animation gif
1 parent 4db588b commit 6f3c12c

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed
1.62 MB
Loading

PathPlanning/BatchInformedRRTStar/batch_informed_rrtstar.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
like incremental graph search algorithms.
1010
1111
author: Karan Chawla(@karanchawla)
12+
Atsushi Sakai(@Atsushi_twi)
1213
1314
Reference: https://arxiv.org/abs/1405.5848
1415
"""
@@ -20,11 +21,10 @@
2021

2122
show_animation = True
2223

23-
# Class to represent the explicit tree created
24-
# while sampling through the state space
25-
2624

2725
class RTree(object):
26+
# Class to represent the explicit tree created
27+
# while sampling through the state space
2828

2929
def __init__(self, start=[0, 0], lowerLimit=[0, 0], upperLimit=[10, 10], resolution=1):
3030

@@ -581,7 +581,6 @@ def main():
581581
bitStar = BITStar(start=[-1, 0], goal=[3, 8], obstacleList=obstacleList,
582582
randArea=[-2, 15])
583583
path = bitStar.plan(animation=show_animation)
584-
# print(path)
585584
print("Done")
586585

587586
if show_animation:
-31.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)