We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d4249 commit 82ec300Copy full SHA for 82ec300
PathPlanning/VoronoiRoadMap/dijkstra_search.py
@@ -136,5 +136,5 @@ def is_same_node_with_xy(node_x, node_y, node_b):
136
@staticmethod
137
def is_same_node(node_a, node_b):
138
dist = np.hypot(node_a.x - node_b.x,
139
- node_b.y - node_b.y)
+ node_a.y - node_b.y)
140
return dist <= 0.1
0 commit comments