rrt star code is clean up

This commit is contained in:
Atsushi Sakai
2018-01-10 11:39:13 -08:00
parent 03f0266fed
commit 947ff8b77a
4 changed files with 27 additions and 81 deletions

13
tests/test_rrt_star.py Normal file
View File

@@ -0,0 +1,13 @@
from unittest import TestCase
from PathPlanning.RRTstar import rrt_star as m
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()
m.main2()