This commit is contained in:
zhm-real
2020-07-28 00:48:51 -07:00
parent 36249933db
commit ffa911e80c
21 changed files with 417 additions and 72 deletions
+1 -1
View File
@@ -218,7 +218,7 @@ class RrtStar:
continue
for node_c in node.child:
node_c.cost = self.get_new_cost(node, node_c)
node_c.Cost = self.get_new_cost(node, node_c)
OPEN.put(node_c)
def extract_path(self, node_end):