From 906d1568915e60d1a0b31472b8dc0ab5e8ca6fd4 Mon Sep 17 00:00:00 2001 From: Atsushi Sakai Date: Thu, 21 Dec 2023 22:03:57 +0900 Subject: [PATCH] Update dstar.py --- PathPlanning/DStar/dstar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PathPlanning/DStar/dstar.py b/PathPlanning/DStar/dstar.py index cc1d88ed66..b62b939f54 100644 --- a/PathPlanning/DStar/dstar.py +++ b/PathPlanning/DStar/dstar.py @@ -245,7 +245,7 @@ def main(): rx, ry = dstar.run(start, end) if show_animation: - # plt.plot(rx, ry, "-r") + plt.plot(rx, ry, "-r") plt.show()