MCPcopy
hub / github.com/AtsushiSakai/PythonRobotics / Node

Class Node

PathPlanning/HybridAStar/a_star.py:18–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16
17
18class Node:
19
20 def __init__(self, x, y, cost, pind):
21 self.x = x
22 self.y = y
23 self.cost = cost
24 self.pind = pind
25
26 def __str__(self):
27 return str(self.x) + "," + str(self.y) + "," + str(self.cost) + "," + str(self.pind)
28
29
30def calc_final_path(ngoal, closedset, reso):

Callers 1

dp_planningFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected