fix a typo

This commit is contained in:
Atsushi Sakai
2019-02-07 13:41:14 +09:00
parent c1a855d649
commit e156fe1e69
2 changed files with 2 additions and 2 deletions

View File

@@ -193,7 +193,7 @@ def main():
if show_animation:
plt.cla()
plt.plot(hz[:, 0], hz[:, 1], ".g")
plt.plot(hz[0, :], hz[1, :], ".g")
plt.plot(hxTrue[0, :].flatten(),
hxTrue[1, :].flatten(), "-b")
plt.plot(hxDR[0, :].flatten(),

View File

@@ -5,7 +5,6 @@ sys.path.append(os.path.dirname(os.path.abspath(__file__)) +
"/../PathPlanning/RRTstar/")
try:
print(sys.path)
import rrt_star as m
except:
raise
@@ -24,3 +23,4 @@ class Test(TestCase):
if __name__ == '__main__':
test = Test()
test.test1()
print(aa)