RRT* for seven joint arm control (#439)

This commit is contained in:
Mahyar Abdeetedal
2020-12-29 06:32:13 -05:00
committed by GitHub
parent e0a8ab2368
commit 65debdc332
2 changed files with 429 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
import os
import sys
from unittest import TestCase
sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
"/../ArmNavigation/seven_joint_arm_to_point_control/")
try:
import rrt_star_seven_joint_arm as m
except ImportError:
raise
print(__file__)
class Test(TestCase):
def test1(self):
m.show_animation = False
m.main()
if __name__ == '__main__': # pragma: no cover
test = Test()
test.test1()