mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-14 14:37:54 -05:00
21 lines
369 B
Python
21 lines
369 B
Python
from unittest import TestCase
|
|
import sys
|
|
sys.path.append("./PathPlanning/RRTDubins/")
|
|
sys.path.append("./PathPlanning/DubinsPath/")
|
|
|
|
try:
|
|
from PathPlanning.RRTDubins import rrt_dubins as m
|
|
# from RRTDubins import rrt_dubins as m
|
|
except:
|
|
raise
|
|
|
|
|
|
print(__file__)
|
|
|
|
|
|
class Test(TestCase):
|
|
|
|
def test1(self):
|
|
m.show_animation = False
|
|
m.main()
|